summaryrefslogtreecommitdiff
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index e06cd61857..796a1c5db3 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -600,7 +600,7 @@ class SysModuleTest(unittest.TestCase):
self.assertEqual(sys.implementation.hexversion, hexversion)
# PEP 421 requires that .name be lower case.
- self.assertEqual(sys.implementation.name,
+ self.assertEqual(sys.implementation.name,
sys.implementation.name.lower())