Skip to content

Commit 3dc8c8b

Browse files
committed
Fix compatibility issue with new numpy version in unit test
1 parent 9b7bf33 commit 3dc8c8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_writers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def test_simple(self):
7878
},
7979
'source': 'JRC E1',
8080
'reference': 'JRC E1',
81-
'dtype': np.float,
81+
'dtype': float,
8282
'lons': self.lons,
8383
'lats': self.lats
8484
}
@@ -106,7 +106,7 @@ def test_mapstack(self):
106106
},
107107
'source': 'JRC E1',
108108
'reference': 'JRC E1',
109-
'dtype': np.float,
109+
'dtype': float,
110110
'lons': self.lons,
111111
'lats': self.lats,
112112
'time': {

0 commit comments

Comments
 (0)