Skip to content

Commit e15faf8

Browse files
committed
Make moar tests happy
1 parent 48daa18 commit e15faf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/expressions/test_expressions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ def test_not_null() -> None:
837837
assert non_null == eval(repr(non_null))
838838
assert non_null == pickle.loads(pickle.dumps(non_null))
839839
pred = NotNull(term="foo")
840-
json_repr = '{"term":"foo","type":"is-null"}'
840+
json_repr = '{"term":"foo","type":"not-null"}'
841841
assert pred.model_dump_json() == json_repr
842842
assert BooleanExpression.model_validate_json(json_repr) == pred
843843

0 commit comments

Comments
 (0)