From: Giampaolo RodolĂ  Date: Fri, 25 Feb 2011 20:05:48 +0000 (+0000) Subject: (issue 11214) - fix asyncore.strerror test failure on AIX X-Git-Tag: v3.3.0a1~3072 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2751fb48203f5a8e1493b45974a260bb3e249bc;p=python (issue 11214) - fix asyncore.strerror test failure on AIX --- 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):