We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc88360 commit f3a0dc9Copy full SHA for f3a0dc9
tests/instruments/test_drifter.py
@@ -1,7 +1,6 @@
1
"""Test the simulation of drifters."""
2
3
import datetime
4
-from datetime import timedelta
5
6
import numpy as np
7
import xarray as xr
@@ -60,8 +59,8 @@ def test_simulate_drifters(tmpdir) -> None:
60
59
fieldset=fieldset,
61
out_path=out_path,
62
drifters=drifters,
63
- outputdt=timedelta(hours=1),
64
- dt=timedelta(minutes=5),
+ outputdt=datetime.timedelta(hours=1),
+ dt=datetime.timedelta(minutes=5),
65
endtime=None,
66
)
67
0 commit comments