diff options
Diffstat (limited to 'tests/test_async.py')
-rwxr-xr-x | tests/test_async.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_async.py b/tests/test_async.py index 2c4bfa3..6469a25 100755 --- a/tests/test_async.py +++ b/tests/test_async.py @@ -24,7 +24,7 @@ # License for more details. import unittest -from testutils import skip_before_postgres, slow +from .testutils import skip_before_postgres, slow import psycopg2 from psycopg2 import extensions as ext @@ -32,7 +32,7 @@ from psycopg2 import extensions as ext import time import StringIO -from testutils import ConnectingTestCase +from .testutils import ConnectingTestCase class PollableStub(object): |