Fix wording.
diff --git a/Lib/test/test_pep277.py b/Lib/test/test_pep277.py
index 9a4c3bb..1b4ae8c 100644
--- a/Lib/test/test_pep277.py
+++ b/Lib/test/test_pep277.py
@@ -38,8 +38,8 @@
f = open(name, 'w')
except UnicodeEncodeError:
if not os.path.supports_unicode_filenames:
- raise unittest.SkipTest("test works only on NT+, and with "
- "pseudo-Unicode filesystems")
+ raise unittest.SkipTest("only NT+ and systems with Unicode"
+ "-friendly filesystem encoding")
f.write((name+'\n').encode("utf-8"))
f.close()
os.stat(name)