Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason committed Oct 31, 2023
1 parent f15b4a3 commit d575633
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion emmet-api/tests/materials/elasticity/test_query_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ def test_chemsys_query():

assert op.query(chemsys="Fe-Bi-O") == {"criteria": {"chemsys": "Bi-Fe-O"}}

assert op.query(chemsys="Fe-Bi-O, Si-O") == {"criteria": {"chemsys": {"$in": ["Bi-Fe-O", "O-Si"]}}}
assert op.query(chemsys="Fe-Bi-O, Si-O") == {
"criteria": {"chemsys": {"$in": ["Bi-Fe-O", "O-Si"]}}
}

with ScratchDir("."):
dumpfn(op, "temp.json")
Expand Down

0 comments on commit d575633

Please sign in to comment.