Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae2da1 commit fc8b205Copy full SHA for fc8b205
1 file changed
Lib/test/test_site.py
@@ -168,14 +168,14 @@ def test_getsitepackages(self):
168
wanted = os.path.join('xoxo', 'Lib', 'site-packages')
169
self.assertEquals(dirs[0], wanted)
170
elif os.sep == '/':
171
- self.assertTrue(len(dirs), 2)
+ self.assertEqual(len(dirs), 2)
172
wanted = os.path.join('xoxo', 'lib', 'python' + sys.version[:3],
173
'site-packages')
174
175
wanted = os.path.join('xoxo', 'lib', 'site-python')
176
self.assertEquals(dirs[1], wanted)
177
else:
178
179
self.assertEquals(dirs[0], 'xoxo')
180
wanted = os.path.join('xoxo', 'lib', 'site-packages')
181
0 commit comments