From a8f872f63ec36fd8c0c0c4155003ba0fe56b37fd Mon Sep 17 00:00:00 2001 From: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com> Date: Mon, 4 Oct 2021 11:38:38 +0300 Subject: [PATCH] Update test.py --- .../test_postgresql_replica_database_engine/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_postgresql_replica_database_engine/test.py b/tests/integration/test_postgresql_replica_database_engine/test.py index 8cbc8aa7de8..92423598a35 100644 --- a/tests/integration/test_postgresql_replica_database_engine/test.py +++ b/tests/integration/test_postgresql_replica_database_engine/test.py @@ -979,7 +979,7 @@ def test_user_managed_slots(started_cluster): drop_postgres_table(cursor, table_name) drop_materialized_db() drop_replication_slot(replication_connection, slot_name) - cursor.execute(f'DROP TABLE IF EXISTS test_table') + cursor.execute('DROP TABLE IF EXISTS test_table') def test_add_new_table_to_replication(started_cluster): @@ -1133,7 +1133,7 @@ def test_predefined_connection_configuration(started_cluster): instance.query("CREATE DATABASE test_database ENGINE = MaterializedPostgreSQL(postgres1)") check_tables_are_synchronized("test_table"); drop_materialized_db() - cursor.execute(f'DROP TABLE IF EXISTS test_table') + cursor.execute('DROP TABLE IF EXISTS test_table') if __name__ == '__main__':