/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_mutabletree.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-03 03:06:48 UTC
  • mto: (5622.4.1 uninstall-hook)
  • mto: This revision was merged to the branch mainline in revision 5747.
  • Revision ID: jelmer@samba.org-20110303030648-06dllv908l39me1b
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    def test_constructor(self):
31
31
        """Check that creating a MutableTreeHooks instance has the right
32
32
        defaults."""
33
 
        hooks = mutabletree.MutableTreeHooks()
 
33
        hooks = mutabletree.MutableTreeHooks(
 
34
            "bzrlib.tests.mutable_tree", "MutableTree.hooks")
34
35
        self.assertTrue("start_commit" in hooks,
35
36
                        "start_commit not in %s" % hooks)
36
37
        self.assertTrue("post_commit" in hooks,