Update test.py

This commit is contained in:
Kseniia Sumarokova 2024-05-13 19:16:05 +02:00 committed by GitHub
parent 4b270e9078
commit 1c527e86aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -938,9 +938,9 @@ def test_drop_table(started_cluster):
node.wait_for_log_line(f"Reading from file: test_drop_data")
node.query(f"DROP TABLE {table_name} SYNC")
assert node.contains_in_log(
f"StorageS3Queue ({table_name}): Table is being dropped"
f"StorageS3Queue (default.{table_name}): Table is being dropped"
) or node.contains_in_log(
f"StorageS3Queue ({table_name}): Shutdown was called, stopping sync"
f"StorageS3Queue (default.{table_name}): Shutdown was called, stopping sync"
)