Skip to content
Snippets Groups Projects
Commit 2adbd601 authored by arigdon-usgs's avatar arigdon-usgs
Browse files

same fix as earlier to the logic

parent fdfa5fc4
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ def test_xyzalgorithm_limited_channels(): ...@@ -54,7 +54,7 @@ def test_xyzalgorithm_limited_channels():
# d has `count` values (same as input) # d has `count` values (same as input)
assert_equals(len(d.data), count) assert_equals(len(d.data), count)
# d has no NaN values # d has no NaN values
assert_equals(len(d[d == np.NaN]), 0) assert_equals(np.isnan(d).any(), False)
def test_xyzalgorithm_uneccesary_channel_empty(): def test_xyzalgorithm_uneccesary_channel_empty():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment