Blame SOURCES/00191-disable-NOOP.patch

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