summaryrefslogtreecommitdiff
path: root/tests/utilities.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utilities.py')
-rw-r--r--tests/utilities.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/utilities.py b/tests/utilities.py
index 438cb798..43f37d35 100644
--- a/tests/utilities.py
+++ b/tests/utilities.py
@@ -179,16 +179,6 @@ def make_ui(**kwargs):
return ui
-def expected_failure(func):
- """For marking expected failures for twisted.trial based unit tests.
-
- The builtin unittest.expectedFailure does not work with twisted.trail,
- there is an outstanding bug for this, but no one has ever fixed it.
- """
- func.todo = 'expected failure'
- return func
-
-
def async_test(coro):
"""Run an asyncrounous test synchronously."""