(self, connection, tablename)
| 105 | self.addCleanup(self.drop_table, connection, tablename) |
| 106 | |
| 107 | def drop_table(self, connection, tablename): |
| 108 | cursor = connection.cursor() |
| 109 | with warnings.catch_warnings(): |
| 110 | warnings.simplefilter("ignore") |
| 111 | cursor.execute(f"drop table if exists `{tablename}`") |
| 112 | cursor.close() |