diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2017-12-01 17:59:53 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2017-12-01 18:35:30 -0800 |
commit | fcc083dc123946039fdfc88c55bbd4902dadd52a (patch) | |
tree | e7bc96626076c6b00f560ce139e9a23a0a04650f /tests/test_module.py | |
parent | a51160317c680662c52e4a1a6b4d11beae37f205 (diff) | |
download | psycopg2-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_module.py')
-rwxr-xr-x | tests/test_module.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_module.py b/tests/test_module.py index 4a4941c..13391d1 100755 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -26,7 +26,8 @@ import os import sys from subprocess import Popen -from testutils import (unittest, skip_before_postgres, +import unittest +from testutils import (skip_before_postgres, ConnectingTestCase, skip_copy_if_green, script_to_py3, slow) import psycopg2 |