~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_log.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:
1309
1309
class TestLogWithBugs(TestCaseForLogFormatter, TestLogMixin):
1310
1310
 
1311
1311
    def setUp(self):
1312
 
        TestCaseForLogFormatter.setUp(self)
 
1312
        super(TestLogWithBugs, self).setUp()
1313
1313
        log.properties_handler_registry.register(
1314
1314
            'bugs_properties_handler',
1315
1315
            log._bugs_properties_handler)
1389
1389
class TestLogForAuthors(TestCaseForLogFormatter):
1390
1390
 
1391
1391
    def setUp(self):
1392
 
        TestCaseForLogFormatter.setUp(self)
 
1392
        super(TestLogForAuthors, self).setUp()
1393
1393
        self.wt = self.make_standard_commit('nicky',
1394
1394
            authors=['John Doe <jdoe@example.com>',
1395
1395
                     'Jane Rey <jrey@example.com>'])