/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: Robert Collins
  • Date: 2009-03-03 06:29:28 UTC
  • mto: This revision was merged to the branch mainline in revision 4075.
  • Revision ID: robertc@robertcollins.net-20090303062928-q5akblb37uc0vzmu
MissedĀ oneĀ test.

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:]