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

  • Committer: Vincent Ladeuil
  • Date: 2010-08-30 08:26:45 UTC
  • mto: (5397.1.3 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 5398.
  • Revision ID: v.ladeuil+lp@free.fr-20100830082645-77bpkmmeba0vy8xh
Fix python-2.6-ism.

Show diffs side-by-side

added added

removed removed

Lines of Context:
491
491
        return self.config_class(*self.config_args)
492
492
 
493
493
    def create_config(self, content):
494
 
        c = self.config_class.from_string(content, *self.config_args, save=True)
 
494
        kwargs = dict(save=True)
 
495
        c = self.config_class.from_string(content, *self.config_args, **kwargs)
495
496
        return c
496
497
 
497
498
    def test_simple_read_access(self):