--- a/Lib/test/test_sysconfig.py Fri Feb 07 17:53:13 2014 +0100 |
+++ b/Lib/test/test_sysconfig.py Fri Feb 07 23:40:05 2014 +0200 |
@@ -286,7 +286,7 @@ |
# just making sure _main() runs and returns things in the stdout |
with captured_stdout() as output: |
_main() |
- self.assertTrue(len(output.getvalue().split('\n')) > 0) |
+ self.assertGreater(len(output.getvalue().split('\n')), 0) |
@unittest.skipIf(sys.platform == "win32", "Does not apply to Windows") |
def test_ldshared_value(self): |