/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

Merged in bzr.dev.

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):