Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sjvenditto committed Feb 6, 2025
1 parent 01aa1f6 commit 943798e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_time_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1384,9 +1384,7 @@ def test_save_npz(self, tsdframe):
metadata = file["_metadata"].item()
assert metadata.keys() == tsdframe._metadata.keys()
for key in metadata.keys():
np.testing.assert_array_almost_equal(
metadata[key], tsdframe._metadata[key]
)
assert np.all(metadata[key] == tsdframe._metadata[key])

Path("tsdframe.npz").unlink()
Path("tsdframe2.npz").unlink()
Expand Down

0 comments on commit 943798e

Please sign in to comment.