summaryrefslogtreecommitdiff
path: root/tests/test_init.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_init.py')
-rw-r--r--tests/test_init.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_init.py b/tests/test_init.py
index f9b91d7..c824c21 100644
--- a/tests/test_init.py
+++ b/tests/test_init.py
@@ -31,7 +31,7 @@ class Test_serve_paste(unittest.TestCase):
self.assertEqual(server.ran, True)
-class DummyServerFactory(object):
+class DummyServerFactory:
ran = False
def __call__(self, app, **kw):
@@ -44,7 +44,7 @@ class DummyServerFactory(object):
self.ran = True
-class DummyAdj(object):
+class DummyAdj:
verbose = False
def __init__(self, kw):