/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_plugins.py

Change load_tests signature to be unittest compatible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
373
373
 
374
374
    def test_load_plugin_tests_gives_load_plugin_tests_result(self):
375
375
        source = """
376
 
def load_tests(standard_tests, module, loader):
 
376
def load_tests(loader, standard_tests, pattern):
377
377
    return 'foo'"""
378
378
        self.setup_plugin(source)
379
379
        loader = tests.TestUtil.TestLoader()