diff options
| author | Jesus Cea <jcea@jcea.es> | 2012-10-05 03:36:11 +0200 |
|---|---|---|
| committer | Jesus Cea <jcea@jcea.es> | 2012-10-05 03:36:11 +0200 |
| commit | f01d695ccdf47855aa9b5f2185a8ce349ed004aa (patch) | |
| tree | f0384a68cb1b511792e4917e417a998324da0ce1 /Lib/test/test_site.py | |
| parent | fa7d5392d467d832e259aff3834bc19a3c005600 (diff) | |
| download | cpython-git-f01d695ccdf47855aa9b5f2185a8ce349ed004aa.tar.gz | |
Closes #16135: Removal of OS/2 support
Diffstat (limited to 'Lib/test/test_site.py')
| -rw-r--r-- | Lib/test/test_site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 29286c710b..5090239ba9 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -222,7 +222,7 @@ class HelperFunctionsTests(unittest.TestCase): site.PREFIXES = ['xoxo'] dirs = site.getsitepackages() - if sys.platform in ('os2emx', 'riscos'): + if sys.platform == 'riscos': self.assertEqual(len(dirs), 1) wanted = os.path.join('xoxo', 'Lib', 'site-packages') self.assertEqual(dirs[0], wanted) |
