[Python-checkins] cpython: Fix test to really run behind a NNTP virus checker

antoine.pitrou python-checkins at python.org
Sun Jun 24 16:31:53 CEST 2012


http://hg.python.org/cpython/rev/5f222311a8f4
changeset:   77719:5f222311a8f4
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sun Jun 24 16:28:18 2012 +0200
summary:
  Fix test to really run behind a NNTP virus checker

files:
  Lib/test/test_nntplib.py |  7 +++++--
  1 files changed, 5 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_nntplib.py b/Lib/test/test_nntplib.py
--- a/Lib/test/test_nntplib.py
+++ b/Lib/test/test_nntplib.py
@@ -178,9 +178,12 @@
         self.assertTrue(resp.startswith("220 "), resp)
         self.check_article_resp(resp, article, art_num)
         # Tolerate running the tests from behind a NNTP virus checker
+        blacklist = lambda line: line.startswith(b'X-Antivirus')
+        filtered_head_lines = [line for line in head.lines
+                               if not blacklist(line)]
         filtered_lines = [line for line in article.lines
-                                  if not line.startswith(b'X-Antivirus')]
-        self.assertEqual(filtered_lines, head.lines + [b''] + body.lines)
+                          if not blacklist(line)]
+        self.assertEqual(filtered_lines, filtered_head_lines + [b''] + body.lines)
 
     def test_capabilities(self):
         # The server under test implements NNTP version 2 and has a

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list