~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/branch_implementations/test_sprout.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-12 05:21:02 UTC
  • mfrom: (4108.1.3 jamesw-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090312052102-ksjfiyd5ctzibuo1
Merge 1.13 back to trunk,
        and move new things in bzr.dev to top of NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
        os.symlink(u'\u03a9','tree1/link_name')
144
144
        tree.add(['link_name'],['link-id'])
145
145
 
146
 
        try:
147
 
            # python 2.7a0 failed on commit:
148
 
            revision = tree.commit('added a link to a Unicode target')
149
 
            # python 2.5 failed on sprout:
150
 
            tree.bzrdir.sprout('target')
151
 
        except UnicodeEncodeError, e:
152
 
            raise KnownFailure('there is no support for'
153
 
                               ' symlinks to non-ASCII targets (bug #272444)')
 
146
        # python 2.7a0 failed on commit:
 
147
        revision = tree.commit('added a link to a Unicode target')
 
148
        # python 2.5 failed on sprout:
 
149
        tree.bzrdir.sprout('target')
154
150
 
155
151
    def assertBranchHookBranchIsStacked(self, pre_change_params):
156
152
        # Just calling will either succeed or fail.