Skip to content

Commit 54472b4

Browse files
authored
test(bigquery): avoid trying to clobber existing tables by generating a name during create memtable tests (#10165)
1 parent 78fd5c6 commit 54472b4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ibis/backends/tests/test_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,7 @@ def test_self_join_memory_table(backend, con, monkeypatch):
999999
)
10001000
def test_create_table_in_memory(con, obj, table_name, monkeypatch):
10011001
monkeypatch.setattr(ibis.options, "default_backend", con)
1002+
table_name = gen_name(table_name)
10021003
t = con.create_table(table_name, obj())
10031004

10041005
try:

0 commit comments

Comments
 (0)