Skip to content

Commit

Permalink
task validation test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmathis committed Jul 19, 2024
1 parent 6dc1545 commit adf63af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion emmet-builders/tests/test_vasp.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ def test_validator(tasks_store, validation_store):
builder.run()
assert validation_store.count() == tasks_store.count()
assert validation_store.count({"valid": True}) == tasks_store.count()
assert all(list(d["run_type"] == "GGA" for d in list(validation_store.query())))
assert all(
list(d["run_type"]["value"] == "GGA" for d in list(validation_store.query()))
)

0 comments on commit adf63af

Please sign in to comment.