We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 536154d commit 68cd04bCopy full SHA for 68cd04b
1 file changed
tests/expressions/test_parser.py
@@ -234,7 +234,7 @@ def test_quoted_column_with_dots() -> None:
234
with pytest.raises(ParseException) as exc_info:
235
parser.parse("'foo.bar'.baz = 'data'")
236
237
- assert "Expected <= | <> | < | >= | > | == | = | !=, found '.'" in str(exc_info.value)
+ assert "Expected '<=' | '<>' | '<' | '>=' | '>' | '==' | '=' | '!=', found '.'" in str(exc_info.value)
238
239
240
def test_quoted_column_with_spaces() -> None:
0 commit comments