~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_wsgi.py

(vila) Calling super() instead of mentioning the base class in setUp avoid
 mistakes. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
class TestWSGI(tests.TestCaseInTempDir, WSGITestMixin):
69
69
 
70
70
    def setUp(self):
71
 
        tests.TestCase.setUp(self)
 
71
        super(TestWSGI, self).setUp()
72
72
        self.status = None
73
73
        self.headers = None
74
74