commit | cfade36227ce9d986da988c14dd80e21cf485400 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Feb 08 23:48:59 2012 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Feb 08 23:48:59 2012 +0100 |
tree | 23114394ecf7c3b933b20fc9d45cd53b0d9416df | |
parent | bcf2b59fb5f18c09a26da3e9b60a37367f2a28ba [diff] [blame] |
Relax tests to fix buildbot failure
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 8dd745a..b9eb290 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py
@@ -1857,8 +1857,8 @@ self.skipTest("failed to query terminal size") raise - self.assertGreater(size.columns, 0) - self.assertGreater(size.lines, 0) + self.assertGreaterEqual(size.columns, 0) + self.assertGreaterEqual(size.lines, 0) def test_stty_match(self): """Check if stty returns the same results