/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-02-24 22:39:38 UTC
  • mfrom: (4040 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4043.
  • Revision ID: robertc@robertcollins.net-20090224223938-3msunxpyk4cki95d
Minor tweaks to fix failing tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
        # Make a local branch with four revisions.  Four revisions because:
233
233
        # one to push, one there for _walk_to_common_revisions to find, one we
234
234
        # don't want to access, one for luck :)
 
235
        if isinstance(self.branch_format, branch.BranchReferenceFormat):
 
236
            # This test could in principle apply to BranchReferenceFormat, but
 
237
            # make_branch_builder doesn't support it.
 
238
            raise tests.TestSkipped(
 
239
                "BranchBuilder can't make reference branches.")
235
240
        try:
236
241
            builder = self.make_branch_builder('local')
237
242
        except (errors.TransportNotPossible, errors.UninitializableFormat):