diff options
Diffstat (limited to 'tests/test_replication.py')
-rwxr-xr-x | tests/test_replication.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_replication.py b/tests/test_replication.py index 444dd11..f686d2b 100755 --- a/tests/test_replication.py +++ b/tests/test_replication.py @@ -26,10 +26,10 @@ import psycopg2 from psycopg2.extras import ( PhysicalReplicationConnection, LogicalReplicationConnection, StopReplication) -import testconfig +from . import testconfig import unittest -from testutils import ConnectingTestCase -from testutils import skip_before_postgres, skip_if_green +from .testutils import ConnectingTestCase +from .testutils import skip_before_postgres, skip_if_green skip_repl_if_green = skip_if_green("replication not supported in green mode") |