We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ece81 commit c5189edCopy full SHA for c5189ed
tests/utils/test_regex_extractor.py
@@ -1,7 +1,5 @@
1
"""Tests for llmsql.utils.regex_extractor module."""
2
3
-import pytest
4
-
5
from llmsql.utils.regex_extractor import find_sql
6
7
@@ -112,7 +110,7 @@ def test_multiple_extraction_methods_same_output(self) -> None:
112
110
113
111
def test_query_with_quotes(self) -> None:
114
"""Test query with quoted identifiers and strings."""
115
- output = '''SELECT "Competition or tour" FROM "2-17637370-13" WHERE "Opponent" = 'Nordsjælland\''''
+ output = """SELECT "Competition or tour" FROM "2-17637370-13" WHERE "Opponent" = 'Nordsjælland\'"""
116
result = find_sql(output)
117
assert len(result) == 1
118
assert "Competition or tour" in result[0]
0 commit comments