summaryrefslogtreecommitdiff
path: root/tests/testutils.py
diff options
context:
space:
mode:
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...