summaryrefslogtreecommitdiff
path: root/Lib/test/test_exceptions.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-23 12:30:35 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-23 12:30:35 +0200
commitc0f01d9eb22ed81c49d8c9fbfd49b6d4c4020310 (patch)
tree0cd6281ec236943f3b1831af10b05ba694d6a790 /Lib/test/test_exceptions.py
parent33a6e5e5b5f5b6f6e08b83e2a1136c9b4285d5cc (diff)
parent06100f2d9d19f6d7eb5440aa1edff598d24a2775 (diff)
downloadcpython-c0f01d9eb22ed81c49d8c9fbfd49b6d4c4020310.tar.gz
Issue #26729: Fixed __text_signature__ for sorted().
Patch by Erik Welch.
Diffstat (limited to 'Lib/test/test_exceptions.py')
-rw-r--r--Lib/test/test_exceptions.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 96c3a48c31..48379222c3 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -1109,7 +1109,6 @@ class ImportErrorTests(unittest.TestCase):
with self.assertRaisesRegex(TypeError, msg):
ImportError(invalid='keyword')
- msg = "'invalid|another' is an invalid keyword argument for this function"
with self.assertRaisesRegex(TypeError, msg):
ImportError('test', invalid='keyword', another=True)