Blame SOURCES/00191-disable-NOOP.patch

72be67
diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py
72be67
index 1bb6690..28ed25d 100644
72be67
--- a/Lib/test/test_smtplib.py
72be67
+++ b/Lib/test/test_smtplib.py
72be67
@@ -182,6 +182,7 @@ class DebuggingServerTests(unittest.TestCase):
72be67
         smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
72be67
         smtp.quit()
72be67
 
72be67
+    @unittest._skipInRpmBuild("Does not work in network-free environment")
72be67
     def testNOOP(self):
72be67
         smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', timeout=15)
72be67
         expected = (250, 'Ok')