diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:51:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:51:00 (GMT) |
commit | f8ab76039bac5ba46cfe159ffdd33a2e49ee24f3 (patch) | |
tree | 51e8d7b8eb00d8e68e861fa0b4039b07b1dbf7c4 /Lib/test/test_ftplib.py | |
parent | db0601f8716cfd035aa0957a63c6ddaf1fc03e93 (diff) | |
download | cpython-f8ab76039bac5ba46cfe159ffdd33a2e49ee24f3.zip cpython-f8ab76039bac5ba46cfe159ffdd33a2e49ee24f3.tar.gz cpython-f8ab76039bac5ba46cfe159ffdd33a2e49ee24f3.tar.bz2 |
remove duplicate test_mkd (closes #19118)
Diffstat (limited to 'Lib/test/test_ftplib.py')
-rw-r--r-- | 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 index b39d753..2c45af3 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') |