Skip to content

Commit

Permalink
add parentheses to final query test
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbrn committed Apr 5, 2024
1 parent 7908233 commit 6bab8d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nested_pandas/nestedframe/test_nestedframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,5 @@ def test_query():
nest_queried = base.query("nested.c > 1")
assert len(nest_queried.nested.nest.to_flat()) == 5

nest_queried = base.query("nested.c > 1 and nested.d>2")
nest_queried = base.query("(nested.c > 1) and (nested.d>2)")
assert len(nest_queried.nested.nest.to_flat()) == 4

0 comments on commit 6bab8d6

Please sign in to comment.