diff options
author | Giampaolo RodolĂ <g.rodola@gmail.com> | 2011-02-25 20:05:48 +0000 |
---|---|---|
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | 2011-02-25 20:05:48 +0000 |
commit | d2751fb48203f5a8e1493b45974a260bb3e249bc (patch) | |
tree | 0d86e0f05e3fb6bb87a017694a2a0269d5f994a8 | |
parent | 46134645aaf10aa7f871438d00ee7a61600307db (diff) | |
download | cpython-git-d2751fb48203f5a8e1493b45974a260bb3e249bc.tar.gz |
(issue 11214) - fix asyncore.strerror test failure on AIX
-rw-r--r-- | Lib/test/test_asyncore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py index 7b84ba2fb6..53c49a803b 100644 --- a/Lib/test/test_asyncore.py +++ b/Lib/test/test_asyncore.py @@ -329,7 +329,7 @@ class DispatcherTests(unittest.TestCase): if hasattr(os, 'strerror'): self.assertEqual(err, os.strerror(errno.EPERM)) err = asyncore._strerror(-1) - self.assertIn("unknown error", err.lower()) + self.assertTrue(err != "") class dispatcherwithsend_noread(asyncore.dispatcher_with_send): |