diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:51:08 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:51:08 (GMT) |
commit | 42686e45c18056f0897c5eb556d0a50e2c1b406b (patch) | |
tree | 9725b38ab5bfe2b4ab5a81dc87fc8c506f82cb12 /Lib/test/test_ftplib.py | |
parent | 3dcdacfe6a698d955866bb3971c687aacc4dd892 (diff) | |
parent | f8ab76039bac5ba46cfe159ffdd33a2e49ee24f3 (diff) | |
download | cpython-42686e45c18056f0897c5eb556d0a50e2c1b406b.zip cpython-42686e45c18056f0897c5eb556d0a50e2c1b406b.tar.gz cpython-42686e45c18056f0897c5eb556d0a50e2c1b406b.tar.bz2 |
merge 3.3 (#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 08d99d8..47563c8 100644 --- a/Lib/test/test_ftplib.py +++ b/Lib/test/test_ftplib.py @@ -534,10 +534,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') |