Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions spanner/tests/system/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def test_create_database(self):

def test_update_database_ddl(self):
pool = BurstyPool()
temp_db_id = 'temp_db'
temp_db_id = 'temp_db' + unique_resource_id('_')

This comment was marked as spam.

temp_db = Config.INSTANCE.database(temp_db_id, pool=pool)
create_op = temp_db.create()
self.to_delete.append(temp_db)
Expand Down Expand Up @@ -843,7 +843,8 @@ def test_read_w_index(self):
]
pool = BurstyPool()
temp_db = Config.INSTANCE.database(
'test_read_w_index', ddl_statements=DDL_STATEMENTS + EXTRA_DDL,
'temp_db' + unique_resource_id('_'),
ddl_statements=DDL_STATEMENTS + EXTRA_DDL,

This comment was marked as spam.

pool=pool)
operation = temp_db.create()
self.to_delete.append(_DatabaseDropper(temp_db))
Expand Down