/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: James Henstridge
  • Date: 2008-04-09 03:09:58 UTC
  • mto: (3360.2.2 prepare-1.4)
  • mto: This revision was merged to the branch mainline in revision 3361.
  • Revision ID: james@jamesh.id.au-20080409030958-rzc9aplft44hpq35
Adjust my tests to pass with Ian's API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
        self.assertTrue("pre_commit" in hooks, "pre_commit not in %s" % hooks)
335
335
        self.assertTrue("post_pull" in hooks, "post_pull not in %s" % hooks)
336
336
        self.assertTrue("post_uncommit" in hooks, "post_uncommit not in %s" % hooks)
337
 
        self.assertTrue("set_last_revision_info" in hooks,
338
 
                        "set_last_revision_info not in %s" % hooks)
 
337
        self.assertTrue("post_change_branch_tip" in hooks,
 
338
                        "post_change_branch_tip not in %s" % hooks)
339
339
 
340
340
    def test_installed_hooks_are_BranchHooks(self):
341
341
        """The installed hooks object should be a BranchHooks."""