]> granicus.if.org Git - python/commitdiff
Cosmetics in error messages.
authorGuido van Rossum <guido@python.org>
Sun, 26 Aug 2007 23:30:31 +0000 (23:30 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 26 Aug 2007 23:30:31 +0000 (23:30 +0000)
Lib/test/test_unicode_file.py

index 69d99aa0d8e1b98e46d7106daa17bce48f5a35f9..9437fced24222853ffb5c690f634d17167a1f1c5 100644 (file)
@@ -13,7 +13,7 @@ try:
 except (UnicodeError, TypeError):
     # Either the file system encoding is None, or the file name
     # cannot be encoded in the file system encoding.
-    raise TestSkipped("No Unicode filesystem semantics on this platform.")
+    raise TestSkipped("No Unicode filesystem semantics on this platform")
 
 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
     # The file system encoding does not support Latin-1
@@ -27,10 +27,10 @@ if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
             # MBCS will not report the error properly
             raise UnicodeError, "mbcs encoding problem"
     except (UnicodeError, TypeError):
-        raise TestSkipped("Cannot find a suiteable filename.")
+        raise TestSkipped("Cannot find a suitable filename")
 
 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
-    raise TestSkipped("Cannot find a suitable filename.")
+    raise TestSkipped("Cannot find a suitable filename")
 
 def remove_if_exists(filename):
     if os.path.exists(filename):