/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/branch_implementations/test_push.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-03 08:54:13 UTC
  • mfrom: (4070.2.8 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090303085413-35seprvnu885xorz
(robertc) Create new server verb BzrDir.cloning_metadir and alter
        Branch.sprout to prevent race conditions during stacked
        branching. (Robert Collins, Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
        self.disableOptimisticGetParentMap()
260
260
        self.assertFalse(local.is_locked())
261
261
        local.push(remote)
262
 
        hpss_call_names = [item[0].method for item in self.hpss_calls]
 
262
        hpss_call_names = [item.call.method for item in self.hpss_calls]
263
263
        self.assertTrue('Repository.insert_stream' in hpss_call_names)
264
264
        insert_stream_idx = hpss_call_names.index('Repository.insert_stream')
265
265
        calls_after_insert_stream = hpss_call_names[insert_stream_idx:]