~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_diff.py

  • Committer: John Arbash Meinel
  • Date: 2008-06-06 13:30:30 UTC
  • mto: This revision was merged to the branch mainline in revision 3482.
  • Revision ID: john@arbash-meinel.com-20080606133030-9cnvpyem4mnplg8k
Rename UnicodeFilename => UnicodeFilenameFeature

Show diffs side-by-side

added added

removed removed

Lines of Context:
519
519
        is a binary file in the diff.
520
520
        """
521
521
        # See https://bugs.launchpad.net/bugs/110092.
522
 
        self.requireFeature(tests.UnicodeFilename)
 
522
        self.requireFeature(tests.UnicodeFilenameFeature)
523
523
 
524
524
        # This bug isn't triggered with cStringIO.
525
525
        from StringIO import StringIO
544
544
 
545
545
    def test_unicode_filename(self):
546
546
        """Test when the filename are unicode."""
547
 
        self.requireFeature(tests.UnicodeFilename)
 
547
        self.requireFeature(tests.UnicodeFilenameFeature)
548
548
 
549
549
        alpha, omega = u'\u03b1', u'\u03c9'
550
550
        autf8, outf8 = alpha.encode('utf8'), omega.encode('utf8')