[Python-checkins] cpython (3.3): remove duplicate test_mkd (closes #19118)

benjamin.peterson python-checkins at python.org
Sun Sep 29 16:58:44 CEST 2013


http://hg.python.org/cpython/rev/9b3088bc24f1
changeset:   85837:9b3088bc24f1
branch:      3.3
parent:      85835:cddb3e1e5054
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Sep 29 10:51:00 2013 -0400
summary:
  remove duplicate test_mkd (closes #19118)

files:
  Lib/test/test_ftplib.py |  4 ----
  1 files changed, 0 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -533,10 +533,6 @@
         dir = self.client.cwd('/foo')
         self.assertEqual(dir, '250 cwd ok')
 
-    def test_mkd(self):
-        dir = self.client.mkd('/foo')
-        self.assertEqual(dir, '/foo')
-
     def test_pwd(self):
         dir = self.client.pwd()
         self.assertEqual(dir, 'pwd ok')

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


More information about the Python-checkins mailing list