Skip to content
Prev Previous commit
Next Next commit
Fix boolean typo
  • Loading branch information
NumberPiOso committed Apr 25, 2022
commit 3ae076cbfc9d34a7a49c76c22e159078cc52d9bc
2 changes: 1 addition & 1 deletion pandas/tests/frame/test_query_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def skip_if_no_pandas_parser(parser):


class TestCompat:
def test_query_non_bolean_raise_error(self):
def test_query_non_boolean_raise_error(self):
df = DataFrame([[0, 10], [1, 20]], columns=["cat", "count"])
msg = "expr must evaluate to boolean not"
with pytest.raises(ValueError, match=msg):
Expand Down