We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2edba3e commit 31b31a0Copy full SHA for 31b31a0
tests/test_api_lazy.py
@@ -3,6 +3,7 @@
3
import glob
4
import xarray as xr
5
import os, pytest
6
+import numpy as np
7
8
nc.options(lazy=True)
9
@@ -45,7 +46,7 @@ def test_errors(self):
45
46
assert tracker.contents.long_name[0] == 'Monthly Means of Global Sea Surface Temperature'
47
tracker.assign(sst2 = lambda x: x.sst + 283)
48
tracker.run()
- assert tracker.contents.long_name[1] == None
49
+ assert str(tracker.contents.long_name[1]) == "nan"
50
51
52
# check wildcard
0 commit comments