Skip to content

Commit

Permalink
reword assertion error message
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Sep 12, 2024
1 parent f66066f commit 2e266df
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/test_dms_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ def test_requirements(all_test_names):
for test in requirement_tests
}

print(required_test_names)
print(all_test_names)
missing_test_names = required_test_names - all_test_names
assert not missing_test_names, f"Missing tests {missing_test_names} required by DMS"
assert not missing_test_names, f"could not find the following tests correlated with DMS requirements: {missing_test_names}"

0 comments on commit 2e266df

Please sign in to comment.