summaryrefslogtreecommitdiff
path: root/tests/test_exc.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_exc.py')
-rw-r--r--tests/test_exc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_exc.py b/tests/test_exc.py
index 9f2dc05..ee83774 100644
--- a/tests/test_exc.py
+++ b/tests/test_exc.py
@@ -23,7 +23,7 @@ def test_noescape_not_basestring():
def test_noescape_unicode():
- class DummyUnicodeObject(object):
+ class DummyUnicodeObject:
def __str__(self):
return "42"
@@ -476,7 +476,7 @@ def test_HTTPMove_call_query_string():
def test_HTTPFound_unused_environ_variable():
- class Crashy(object):
+ class Crashy:
def __str__(self):
raise Exception("I crashed!")