Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jvasquezrojas committed Oct 25, 2024
1 parent 6ac3fc0 commit 705535b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ def test_create_table_with_cluster_by(engine_testaccount):

def test_create_table_with_cluster_by_with_expression(engine_testaccount):
metadata = MetaData()
user = Table(
Table(
"clustered_user",
metadata,
Column("Id", Integer, primary_key=True),
Expand All @@ -715,7 +715,7 @@ def test_create_table_with_cluster_by_with_expression(engine_testaccount):
columns_in_table = inspector.get_columns("clustered_user")
assert columns_in_table[0]["name"] == "Id", "name"
finally:
user.drop(engine_testaccount)
metadata.drop_all(engine_testaccount)


def test_compile_table_with_cluster_by_with_expression(sql_compiler, snapshot):
Expand Down

0 comments on commit 705535b

Please sign in to comment.