Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kthyng committed Oct 5, 2023
1 parent 3fa24d5 commit 23c7e85
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,10 @@ def check_output(cat, featuretype, key_variable, project_cache, no_Z):
statsactual = yaml.safe_load(fp)
for key in statsexpected.keys():
try:
TestCase().assertAlmostEqual(statsexpected[key]["value"], statsactual[key]["value"], places=5)

TestCase().assertAlmostEqual(
statsexpected[key]["value"], statsactual[key]["value"], places=5
)

except AssertionError as msg:
print(msg)
# assert statsexpected == statsactual
Expand Down

0 comments on commit 23c7e85

Please sign in to comment.