Fix tests

pull/7286/head
ivyazmitinov 2024-06-28 18:58:18 +02:00
parent f7516d7e26
commit 4d54ee80a3
1 changed files with 5 additions and 0 deletions

View File

@ -147,3 +147,8 @@ async def test_multiple_databases_distributed_deadlock_detection(cluster):
) )
too_many_clients_errors_count = cursor.fetchone()[0] too_many_clients_errors_count = cursor.fetchone()[0]
assert too_many_clients_errors_count == 0 assert too_many_clients_errors_count == 0
for db_name in db_names:
cluster.coordinator.sql(
"DROP TABLE public.deadlock_detection_test", dbname=db_name
)