~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_branch.py

(jam) BzrDirFormat1.require_stacking upgrades the branch separate
        from the repo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
237
237
            ['branch', '--stacked', 'trunk', 'shallow'])
238
238
        # We should notify the user that we upgraded their format
239
239
        self.assertEqualDiff(
240
 
            'Source format does not support stacking, using format: \'1.6\'\n'
 
240
            'Source repository format does not support stacking, using format:\n'
241
241
            '  Packs 5 (adds stacking support, requires bzr 1.6)\n'
242
 
            '\n'
 
242
            'Source branch format does not support stacking, using format:\n'
 
243
            '  Branch format 7\n'
243
244
            'Created new stacked branch referring to %s.\n' % (trunk.base,),
244
245
            err)
245
246
 
249
250
            ['branch', '--stacked', 'trunk', 'shallow'])
250
251
        # We should notify the user that we upgraded their format
251
252
        self.assertEqualDiff(
252
 
            'Source format does not support stacking, using format:'
253
 
            ' \'1.6.1-rich-root\'\n'
 
253
            'Source repository format does not support stacking, using format:\n'
254
254
            '  Packs 5 rich-root (adds stacking support, requires bzr 1.6.1)\n'
255
 
            '\n'
 
255
            'Source branch format does not support stacking, using format:\n'
 
256
            '  Branch format 7\n'
256
257
            'Created new stacked branch referring to %s.\n' % (trunk.base,),
257
258
            err)
258
259