~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Daniel Clemente
  • Date: 2008-10-18 10:11:46 UTC
  • mto: This revision was merged to the branch mainline in revision 3862.
  • Revision ID: dcl441-bugs@yahoo.com-20081018101146-y5h988pyatx7jzd5
Broken lines, and prepended # before bug numbers

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
        self.failUnlessExists('target/a')
103
103
 
104
104
    def test_sprout_with_unicode_symlink(self):
105
 
        # this tests bug #272444 (also tested by TestSetParents.test_unicode_symlink at test_parents.py)
 
105
        # this tests bug #272444
 
106
        # Also tested by TestSetParents.test_unicode_symlink at test_parents.py
106
107
        self.requireFeature(SymlinkFeature)
107
108
        self.requireFeature(UnicodeFilenameFeature)
108
109
 
117
118
        try:
118
119
            tree.bzrdir.sprout('target')
119
120
        except UnicodeEncodeError, e:
120
 
            raise KnownFailure('there is no support for symlinks to non-ASCII targets (bug 272444)')
 
121
            raise KnownFailure('there is no support for'
 
122
                               ' symlinks to non-ASCII targets (bug #272444)')
121
123