We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48d7c5d commit 9c31fd8Copy full SHA for 9c31fd8
testtools/testcase.py
@@ -60,8 +60,6 @@ class _UnexpectedSuccess(Exception):
60
Note that this exception is private plumbing in testtools' testcase
61
module.
62
"""
63
-_UnexpectedSuccess = try_import(
64
- 'unittest.case._UnexpectedSuccess', _UnexpectedSuccess)
65
66
67
class _ExpectedFailure(Exception):
@@ -70,8 +68,6 @@ class _ExpectedFailure(Exception):
70
68
71
69
72
73
-_ExpectedFailure = try_import(
74
- 'unittest.case._ExpectedFailure', _ExpectedFailure)
75
76
77
# Copied from unittest before python 3.4 release. Used to maintain
0 commit comments