Skip to content

Commit

Permalink
Reverted time constrain from test
Browse files Browse the repository at this point in the history
  • Loading branch information
ladsmund authored and BaptisteVandecrux committed Nov 24, 2024
1 parent 354d3c9 commit 756768f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/test_get_l2.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def test_get_l2_raw(self):
self.assertEqual(dataset.attrs["station_id"], station_id)
self.assertIsInstance(dataset.attrs["date_created"], str)
date_created = pd.to_datetime(dataset.attrs["date_created"])
self.assertLess(t0 - date_created, datetime.timedelta(seconds=5))
self.assertLess(t0 - date_created, datetime.timedelta(seconds=1))
self.assertEqual(
dataset.attrs["date_issued"], dataset.attrs["date_created"]
)
Expand Down

0 comments on commit 756768f

Please sign in to comment.