diff options
Diffstat (limited to 'tests/test_split.py')
-rw-r--r-- | tests/test_split.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_split.py b/tests/test_split.py index a9d7576..e79750e 100644 --- a/tests/test_split.py +++ b/tests/test_split.py @@ -18,8 +18,8 @@ def test_split_semicolon(): def test_split_backslash(): - stmts = sqlparse.parse(r"select '\\'; select '\''; select '\\\'';") - assert len(stmts) == 3 + stmts = sqlparse.parse("select '\'; select '\'';") + assert len(stmts) == 2 @pytest.mark.parametrize('fn', ['function.sql', |