~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_smart.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-18 23:27:40 UTC
  • mfrom: (4599.4.45 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090818232740-8q7ms2nntw9ckyvq
(robertc) Change the default format to 2a. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
456
456
    def test_stacked_branch(self):
457
457
        """Opening a stacked branch does not open the stacked-on branch."""
458
458
        trunk = self.make_branch('trunk')
459
 
        feature = self.make_branch('feature', format='1.9')
 
459
        feature = self.make_branch('feature')
460
460
        feature.set_stacked_on_url(trunk.base)
461
461
        opened_branches = []
462
462
        Branch.hooks.install_named_hook('open', opened_branches.append, None)