summaryrefslogtreecommitdiff
path: root/tests/testutils.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-09-22 18:54:55 -0700
committerJon Dufresne <jon.dufresne@gmail.com>2018-09-22 19:02:33 -0700
commitb07e34e0b892283b7b2bcb88e473806dff67dce0 (patch)
tree350947e2c42757a630ac7652bbdcee10a4e218bd /tests/testutils.py
parent6b6b1a6e8d5d831fe17b168b4bf33d2c22bb2cc0 (diff)
downloadpsycopg2-b07e34e0b892283b7b2bcb88e473806dff67dce0.tar.gz
Prefer https:// URLs when available
Diffstat (limited to 'tests/testutils.py')
-rw-r--r--tests/testutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils.py b/tests/testutils.py
index 3bb72e2..11138f0 100644
--- a/tests/testutils.py
+++ b/tests/testutils.py
@@ -50,7 +50,7 @@ else:
# Silence warnings caused by the stubbornness of the Python unittest
# maintainers
-# http://bugs.python.org/issue9424
+# https://bugs.python.org/issue9424
if (not hasattr(unittest.TestCase, 'assert_')
or unittest.TestCase.assert_ is not unittest.TestCase.assertTrue):
# mavaff...