Blame SOURCES/00191-disable-NOOP.patch

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