Skip to content

Commit 3178332

Browse files
committed
nit
1 parent 1631142 commit 3178332

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/test_complex_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_read_complex_types_as_arrow(self, field, expected_type, table_fixture):
5959

6060
with self.cursor() as cursor:
6161
result = cursor.execute(
62-
"SELECT * FROM pysql_e2e_test_complex_types_table LIMIT 1"
62+
"SELECT * FROM pysql_test_complex_types_table LIMIT 1"
6363
).fetchone()
6464

6565
assert isinstance(result[field], expected_type)
@@ -81,7 +81,7 @@ def test_read_complex_types_as_string(self, field, table_fixture):
8181
extra_params={"_use_arrow_native_complex_types": False}
8282
) as cursor:
8383
result = cursor.execute(
84-
"SELECT * FROM pysql_e2e_test_complex_types_table LIMIT 1"
84+
"SELECT * FROM pysql_test_complex_types_table LIMIT 1"
8585
).fetchone()
8686

8787
assert isinstance(result[field], str)

0 commit comments

Comments
 (0)