Skip to content

Commit

Permalink
More review comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterMeisrimelModelon committed Feb 13, 2024
1 parent 28963cb commit faa0a5d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ def test_read_alias_derivative(self):
derx = res["der(x)"]
dery = res["der(y)"]

assert len(derx) > 0
for i in range(len(derx)):
assert derx[i] == dery[i]

Expand Down Expand Up @@ -468,6 +469,7 @@ def test_read_alias_derivative(self):
derx = res["der(x)"]
dery = res["der(y)"]

assert len(derx) > 0
for i in range(len(derx)):
assert derx[i] == dery[i]

Expand Down

0 comments on commit faa0a5d

Please sign in to comment.