From: Benjamin Peterson Date: Sun, 29 Sep 2013 14:51:00 +0000 (-0400) Subject: remove duplicate test_mkd (closes #19118) X-Git-Tag: v3.4.0a4~310^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f8ab76039bac5ba46cfe159ffdd33a2e49ee24f3;p=thirdparty%2FPython%2Fcpython.git remove duplicate test_mkd (closes #19118) --- diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index b39d753d4def..2c45af31453b 100644 --- a/Lib/test/test_ftplib.py +++ b/Lib/test/test_ftplib.py @@ -533,10 +533,6 @@ class TestFTPClass(TestCase): 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')