/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

  • Committer: Martin Pool
  • Date: 2009-03-13 01:27:47 UTC
  • mfrom: (4138 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4140.
  • Revision ID: mbp@sourcefrog.net-20090313012747-igvrav6sr7irhz1l
merge news

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