Skip to content
Snippets Groups Projects
Commit 0ff6fb79 authored by David Schäfer's avatar David Schäfer
Browse files

fixed failing test

parent 787ae1a4
No related branches found
No related tags found
4 merge requests!193Release 1.4,!188Release 1.4,!32WIP: Plot rework,!24Dios integration
......@@ -162,10 +162,7 @@ def test_ismissing(data, flagger, nodata):
tests = [
(f"ismissing({var1})", lambda data: (data.isna() | (data == nodata)).all()),
(
f"~ismissing({var1})",
lambda data: (data.notna() & (data != nodata)).all(),
),
(f"~ismissing({var1})", lambda data: ~(data.isna() | (data == nodata)).all(),),
]
for expr, checkFunc in tests:
......
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