~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-31 05:10:59 UTC
  • mfrom: (2659.1.3 bzr-send)
  • Revision ID: pqm@pqm.ubuntu.com-20070731051059-q0z19zdpq7t76iex
rename "submit" to "send"

Show diffs side-by-side

added added

removed removed

Lines of Context:
293
293
 
294
294
        # Create the bundle for 'b' to pull
295
295
        os.chdir('branch_a')
296
 
        bundle_file = open('../bundle', 'wb')
297
 
        bundle_file.write(self.run_bzr('bundle ../branch_b')[0])
298
 
        bundle_file.close()
 
296
        self.run_bzr('bundle ../branch_b -o ../bundle')
299
297
 
300
298
        os.chdir('../branch_b')
301
299
        out, err = self.run_bzr('pull ../bundle')