Skip to content

Commit d853d1f

Browse files
committed
chore: update boolean check in tests
1 parent 84ce127 commit d853d1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def test_create_mock_computeevs_cli_yaml(mock_yaml_file):
224224
actual_args_set = set(actual_args)
225225

226226
assert all(arg in actual_args_set for arg in expected_args)
227-
assert result["compute-envs"][0]["overwrite"] == False
227+
assert not result["compute-envs"][0]["overwrite"]
228228
assert len(actual_args) == len(expected_args)
229229

230230

0 commit comments

Comments
 (0)