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 48bddff commit 1872cc5Copy full SHA for 1872cc5
tests/test_JmaCsvCatalog.py
@@ -40,11 +40,11 @@ def test_JmaCsvCatalog_loading():
40
# assert (d[0].timestamp() * 1000.) == c.observed_catalog['timestamp'][0]
41
42
_datetimes = numpy.ndarray(test_catalog.event_count, dtype='<i8')
43
- _datetimes.fill(numpy.nan)
+ # _datetimes.fill(numpy.nan)
44
45
for _idx, _val in enumerate(_dummy):
46
_datetimes[_idx] = round(1000. * _val.timestamp())
47
48
numpy.testing.assert_allclose(_datetimes, test_catalog.catalog['origin_time'],
49
err_msg='timestamp mismatch',
50
- verbose=True, rtol=0, atol=0)
+ verbose=True, rtol=0, atol=0)
0 commit comments