~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_selftest.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:
1052
1052
class TestUnicodeFilenameFeature(TestCase):
1053
1053
 
1054
1054
    def test_probe_passes(self):
1055
 
        """UnicodeFilename._probe passes."""
 
1055
        """UnicodeFilenameFeature._probe passes."""
1056
1056
        # We can't test much more than that because the behaviour depends
1057
1057
        # on the platform.
1058
 
        tests.UnicodeFilename._probe()
 
1058
        tests.UnicodeFilenameFeature._probe()
1059
1059
 
1060
1060
 
1061
1061
class TestRunner(TestCase):