summaryrefslogtreecommitdiff
path: root/tests/decorators
diff options
context:
space:
mode:
Diffstat (limited to 'tests/decorators')
-rw-r--r--tests/decorators/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/decorators/tests.py b/tests/decorators/tests.py
index c2116a05ce..8fedacec22 100644
--- a/tests/decorators/tests.py
+++ b/tests/decorators/tests.py
@@ -256,8 +256,8 @@ class MethodDecoratorTests(SimpleTestCase):
def test_bad_iterable(self):
decorators = {myattr_dec_m, myattr2_dec_m}
- # The rest of the exception message differs between Python 2 and 3.
- with self.assertRaisesMessage(TypeError, "'set' object"):
+ msg = "'set' object is not subscriptable"
+ with self.assertRaisesMessage(TypeError, msg):
@method_decorator(decorators, "method")
class TestIterable:
def method(self):