Skip to content

Commit

Permalink
Naming
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait committed Nov 13, 2024
1 parent dbae472 commit 620f3c5
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 @@ -29,8 +29,8 @@ def table(connection_kwargs):
yield name

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


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

0 comments on commit 620f3c5

Please sign in to comment.