Closed
Description
From Kokoro today:
________________________ TestTableAdminAPI.test_exists _________________________
self = <tests.system.TestTableAdminAPI testMethod=test_exists>
def test_exists(self):
temp_table_id = 'test-table_existence'
temp_table = Config.INSTANCE.table(temp_table_id)
self.assertFalse(temp_table.exists())
temp_table.create()
self.assertTrue(temp_table.exists())
temp_table.delete()
> self.assertFalse(temp_table.exists())
E AssertionError: True is not false
Presumably, this is an eventual consistency thing.
Activity