From a8de06e16d3b3bbf7fdb2f176e1e5153ca3f98a0 Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Mon, 15 Jul 2024 10:37:12 +0200 Subject: [PATCH] Revert "Add regression test (#780)." This reverts commit b253bb12292a3b8aac9a94c056debe006da8ce81. --- tests/test_split.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_split.py b/tests/test_split.py index d6676086..e2f1429e 100644 --- a/tests/test_split.py +++ b/tests/test_split.py @@ -22,11 +22,6 @@ def test_split_backslash(): assert len(stmts) == 2 -def test_escaped_quotes(): # issue780 - stmts = sqlparse.parse("SELECT (')\'');a');") - assert len(stmts) == 1 - - @pytest.mark.parametrize('fn', ['function.sql', 'function_psql.sql', 'function_psql2.sql',