Skip to content

Commit

Permalink
test(bigquery): avoid trying to clobber existing tables by generating…
Browse files Browse the repository at this point in the history
… a name during create memtable tests (ibis-project#10165)
  • Loading branch information
cpcloud authored and ncclementi committed Sep 24, 2024
1 parent 1ae4bd1 commit 2aa51ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ibis/backends/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,6 +999,7 @@ def test_self_join_memory_table(backend, con, monkeypatch):
)
def test_create_table_in_memory(con, obj, table_name, monkeypatch):
monkeypatch.setattr(ibis.options, "default_backend", con)
table_name = gen_name(table_name)
t = con.create_table(table_name, obj())

try:
Expand Down

0 comments on commit 2aa51ae

Please sign in to comment.