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 48daa18 commit e15faf8Copy full SHA for e15faf8
tests/expressions/test_expressions.py
@@ -837,7 +837,7 @@ def test_not_null() -> None:
837
assert non_null == eval(repr(non_null))
838
assert non_null == pickle.loads(pickle.dumps(non_null))
839
pred = NotNull(term="foo")
840
- json_repr = '{"term":"foo","type":"is-null"}'
+ json_repr = '{"term":"foo","type":"not-null"}'
841
assert pred.model_dump_json() == json_repr
842
assert BooleanExpression.model_validate_json(json_repr) == pred
843
0 commit comments