Skip to content

Commit

Permalink
fixed auto tests
Browse files Browse the repository at this point in the history
  • Loading branch information
miniufo committed Oct 26, 2024
1 parent 49911ae commit 29f025d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_openDataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def test_template():
print(dset1)
print(dset3)
for l in range(len(dset1.time)):
print(dset3.time[l])
print(dset1.time[l].values, dset3.time[l].values)
print(dset1.air[0,0].values, dset3.air[0,0].values)
xr.testing.assert_allclose(dset1.air[l], dset3.air[l])
else:
print('4')
Expand Down

0 comments on commit 29f025d

Please sign in to comment.