/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 bzrlib/tests/test_branch.py

merge bzr.dev r4164

Show diffs side-by-side

added added

removed removed

Lines of Context:
424
424
    def test_installed_hooks_are_BranchHooks(self):
425
425
        """The installed hooks object should be a BranchHooks."""
426
426
        # the installed hooks are saved in self._preserved_hooks.
427
 
        self.assertIsInstance(self._preserved_hooks[_mod_branch.Branch], BranchHooks)
 
427
        self.assertIsInstance(self._preserved_hooks[_mod_branch.Branch][1],
 
428
            BranchHooks)
428
429
 
429
430
 
430
431
class TestPullResult(TestCase):
470
471
    """Tests for _run_with_write_locked_target."""
471
472
 
472
473
    def setUp(self):
 
474
        TestCase.setUp(self)
473
475
        self._calls = []
474
476
 
475
477
    def func_that_returns_ok(self):