~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/tests/test_acceptance.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2010-08-17 09:26:29 UTC
  • mfrom: (11040.1.19 new-bzr)
  • Revision ID: launchpad@pqm.canonical.com-20100817092629-wztz2t3cscbjrd0p
[r=mwhudson,thumper][ui=none] Upgrade bzr to 2.2 final.

Show diffs side-by-side

added added

removed removed

Lines of Context:
242
242
            creator_id, '/~%s/%s/%s' % (user, product, branch))
243
243
        branch_url = 'file://' + os.path.abspath(
244
244
            os.path.join(branch_root, branch_id_to_path(branch_id)))
245
 
        self.runInChdir(
246
 
            self.local_branch_path,
247
 
            self.run_bzr, ['push', '--create-prefix', branch_url],
248
 
            retcode=None)
 
245
        self.push(self.local_branch_path, branch_url, ['--create-prefix'])
249
246
        return branch_url
250
247
 
251
248