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 6a374fb commit 64f288fCopy full SHA for 64f288f
python/tests/test_expr.py
@@ -148,8 +148,7 @@ def test_relational_expr(test_ctx):
148
assert df.filter(col("b") == "beta").count() == 1
149
assert df.filter(col("b") != "beta").count() == 2
150
151
- with pytest.raises(Exception):
152
- df.filter(col("a") == "beta").count()
+ assert df.filter(col("a") == "beta").count() == 0
153
154
155
def test_expr_to_variant():
0 commit comments