Skip to content

Commit 68cd04b

Browse files
committed
tokens now quoted in error message
1 parent 536154d commit 68cd04b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/expressions/test_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def test_quoted_column_with_dots() -> None:
234234
with pytest.raises(ParseException) as exc_info:
235235
parser.parse("'foo.bar'.baz = 'data'")
236236

237-
assert "Expected <= | <> | < | >= | > | == | = | !=, found '.'" in str(exc_info.value)
237+
assert "Expected '<=' | '<>' | '<' | '>=' | '>' | '==' | '=' | '!=', found '.'" in str(exc_info.value)
238238

239239

240240
def test_quoted_column_with_spaces() -> None:

0 commit comments

Comments
 (0)