Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeertmans committed Sep 6, 2024
1 parent f25a0e7 commit 83afff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def test_grid(self):

X, Y = wall.grid(25, 50)

assert X.shape == (25, 50)
assert Y.shape == (25, 50)
assert X.shape == (50, 25)
assert Y.shape == (50, 25)
assert float(X.min()) == 0.0
assert float(X.max()) == 1.0
assert float(Y.min()) == 0.0
Expand Down

0 comments on commit 83afff8

Please sign in to comment.