Skip to content

Commit c5189ed

Browse files
unused import deleted;
1 parent 47ece81 commit c5189ed

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/utils/test_regex_extractor.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Tests for llmsql.utils.regex_extractor module."""
22

3-
import pytest
4-
53
from llmsql.utils.regex_extractor import find_sql
64

75

@@ -112,7 +110,7 @@ def test_multiple_extraction_methods_same_output(self) -> None:
112110

113111
def test_query_with_quotes(self) -> None:
114112
"""Test query with quoted identifiers and strings."""
115-
output = '''SELECT "Competition or tour" FROM "2-17637370-13" WHERE "Opponent" = 'Nordsjælland\''''
113+
output = """SELECT "Competition or tour" FROM "2-17637370-13" WHERE "Opponent" = 'Nordsjælland\'"""
116114
result = find_sql(output)
117115
assert len(result) == 1
118116
assert "Competition or tour" in result[0]

0 commit comments

Comments
 (0)