Skip to content

Commit bf69392

Browse files
comment
1 parent f9efe9d commit bf69392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/computation/test_eval.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2006,7 +2006,7 @@ def test_query_on_expr_with_column_name_with_backtick():
20062006
# GH 59285
20072007
df = DataFrame({"a`b": (1, 2, 3), "ab": (4, 5, 6)})
20082008
result = df.query("`a``b` < 2")
2009-
# Note: Formatting checks may wrongly consider the above``inline code``.
2009+
# Note: Formatting checks may wrongly consider the above ``inline code``.
20102010
expected = df[df["a`b"] < 2]
20112011
tm.assert_frame_equal(result, expected)
20122012

0 commit comments

Comments
 (0)