~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2009-02-19 02:06:54 UTC
  • mto: This revision was merged to the branch mainline in revision 4020.
  • Revision ID: robertc@robertcollins.net-20090219020654-1l19ged3zo7212jh
Perform creation of BzrDirMetaFormat1 control directories using an RPC where possible. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
        # being too low. If rpc_count increases, more network roundtrips have
193
193
        # become necessary for this use case. Please do not adjust this number
194
194
        # upwards without agreement from bzr's network support maintainers.
195
 
        self.assertEqual(107, rpc_count)
 
195
        self.assertEqual(94, rpc_count)
196
196
 
197
197
    def test_push_smart_stacked_streaming_acceptance(self):
198
198
        self.setup_smart_server_with_call_log()
209
209
        # being too low. If rpc_count increases, more network roundtrips have
210
210
        # become necessary for this use case. Please do not adjust this number
211
211
        # upwards without agreement from bzr's network support maintainers.
212
 
        self.assertEqual(132, rpc_count)
 
212
        self.assertEqual(119, rpc_count)
213
213
        remote = Branch.open('public')
214
214
        self.assertEndsWith(remote.get_stacked_on_url(), '/parent')
215
215