~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Merge lockable-config-files into remove-gratuitous-ensure-config-dir-exist-calls resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
619
619
 
620
620
    def test_get_push_location_exact(self):
621
621
        b = self.get_branch()
622
 
        config.LocationConfig.from_bytes(
 
622
        config.LocationConfig.from_string(
623
623
            '[%s]\npush_location=foo\n' % (b.base,), b.base, save=True)
624
624
        self.assertEqual("foo", self.get_branch().get_push_location())
625
625