~gz/bzr/test_bzr_subprocess_log

« back to all changes in this revision

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

(vila) Migrate more branch config options to config stacks. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
651
651
 
652
652
    def test_get_child_submit_format(self):
653
653
        branch = self.get_branch()
654
 
        branch.get_config().set_user_option('child_submit_format', '10')
 
654
        branch.get_config_stack().set('child_submit_format', '10')
655
655
        branch = self.get_branch()
656
656
        self.assertEqual('10', branch.get_child_submit_format())
657
657