From dcad046d39e4e879e80e8026224bd2b70585b630 Mon Sep 17 00:00:00 2001 From: "R. David Murray" Date: Mon, 13 Apr 2009 01:06:46 +0000 Subject: [PATCH] Adjust test_asyncore to account for intentional asyncore behavior change introduced by r70934 that was causing a test failure when run under -O. --- Lib/test/test_asyncore.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py index e1ccb5a8529..ce835aa36c8 100644 --- a/Lib/test/test_asyncore.py +++ b/Lib/test/test_asyncore.py @@ -272,10 +272,7 @@ class DispatcherTests(unittest.TestCase): sys.stdout = stdout lines = fp.getvalue().splitlines() - if __debug__: - expected = ['EGGS: %s' % l1, 'info: %s' % l2, 'SPAM: %s' % l3] - else: - expected = ['EGGS: %s' % l1, 'SPAM: %s' % l3] + expected = ['EGGS: %s' % l1, 'info: %s' % l2, 'SPAM: %s' % l3] self.assertEquals(lines, expected)