/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: Andrew Bennetts
  • Date: 2009-07-13 02:01:45 UTC
  • mto: (4476.3.44 inventory-delta)
  • mto: This revision was merged to the branch mainline in revision 4608.
  • Revision ID: andrew.bennetts@canonical.com-20090713020145-wtev6xiy8a69zzo8
Finish updating verb name from _1.17 to _1.18.  Also, fix a typo in a comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
        self.assertFalse(local.is_locked())
261
261
        local.push(remote)
262
262
        hpss_call_names = [item.call.method for item in self.hpss_calls]
263
 
        self.assertTrue('Repository.insert_stream_1.17' in hpss_call_names)
 
263
        self.assertTrue('Repository.insert_stream_1.18' in hpss_call_names)
264
264
        insert_stream_idx = hpss_call_names.index(
265
 
            'Repository.insert_stream_1.17')
 
265
            'Repository.insert_stream_1.18')
266
266
        calls_after_insert_stream = hpss_call_names[insert_stream_idx:]
267
267
        # After inserting the stream the client has no reason to query the
268
268
        # remote graph any further.
269
269
        self.assertEqual(
270
 
            ['Repository.insert_stream_1.17', 'Repository.insert_stream_1.17',
 
270
            ['Repository.insert_stream_1.18', 'Repository.insert_stream_1.18',
271
271
             'get', 'Branch.set_last_revision_info', 'Branch.unlock'],
272
272
            calls_after_insert_stream)
273
273