summaryrefslogtreecommitdiff
path: root/tests/test_dates.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2017-12-01 17:59:53 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2017-12-01 18:35:30 -0800
commitfcc083dc123946039fdfc88c55bbd4902dadd52a (patch)
treee7bc96626076c6b00f560ce139e9a23a0a04650f /tests/test_dates.py
parenta51160317c680662c52e4a1a6b4d11beae37f205 (diff)
downloadpsycopg2-fcc083dc123946039fdfc88c55bbd4902dadd52a.tar.gz
Always import the system unittest
There is no need to import testutils.unittest instead of simply unittest. They are simple aliases. Use system unittest to be more regular, consistent as well as idiomatic with the wider Python community.
Diffstat (limited to 'tests/test_dates.py')
-rwxr-xr-xtests/test_dates.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_dates.py b/tests/test_dates.py
index 9ce74d8..ccfdc20 100755
--- a/tests/test_dates.py
+++ b/tests/test_dates.py
@@ -25,7 +25,8 @@
import math
import psycopg2
from psycopg2.tz import FixedOffsetTimezone, ZERO
-from testutils import unittest, ConnectingTestCase, skip_before_postgres
+import unittest
+from testutils import ConnectingTestCase, skip_before_postgres
def total_seconds(d):