~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_remote.py

  • Committer: Andrew Bennetts
  • Date: 2011-03-01 08:07:49 UTC
  • mto: This revision was merged to the branch mainline in revision 5695.
  • Revision ID: andrew.bennetts@canonical.com-20110301080749-2fv6l3d4t9o7umfm
Use a more explicit method name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1179
1179
        transport.mkdir('quack')
1180
1180
        transport = transport.clone('quack')
1181
1181
        branch = self.make_remote_branch(transport, client)
1182
 
        branch._format._native_heads_to_fetch = lambda: False
 
1182
        branch._format._use_default_local_heads_to_fetch = lambda: False
1183
1183
        result = branch.heads_to_fetch()
1184
1184
        self.assertFinished(client)
1185
1185
        self.assertEqual((set(['tip']), set(['tagged-1', 'tagged-2'])), result)