Skip to content

Commit

Permalink
Wrap in text
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait committed Nov 13, 2024
1 parent 620f3c5 commit 285cfeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dask_snowflake/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pytest
import snowflake.connector
from snowflake.sqlalchemy import URL
from sqlalchemy import create_engine
from sqlalchemy import create_engine, text

import dask
import dask.dataframe as dd
Expand All @@ -30,7 +30,7 @@ def table(connection_kwargs):

engine = create_engine(URL(**connection_kwargs))
with engine.connect() as conn:
conn.execute(f"DROP TABLE IF EXISTS {name}")
conn.execute(text(f"DROP TABLE IF EXISTS {name}"))


@pytest.fixture(scope="module")
Expand Down

0 comments on commit 285cfeb

Please sign in to comment.