diff --git a/tests/testutils.py b/tests/testutils.py index e8604396..ba31e3b0 100644 --- a/tests/testutils.py +++ b/tests/testutils.py @@ -203,11 +203,6 @@ def skip_if_no_uuid(f): """Decorator to skip a test if uuid is not supported by Py/PG.""" @wraps(f) def skip_if_no_uuid_(self): - try: - import uuid # noqa - except ImportError: - return self.skipTest("uuid not available in this Python version") - try: cur = self.conn.cursor() cur.execute("select typname from pg_type where typname = 'uuid'")