mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
gh-97590: Update docs and tests for ftplib.FTP.voidcmd() (GH-96825)
Since 2f3941d743
this function returns the
response string, rather than nothing.
This commit is contained in:
parent
26800cf25a
commit
e88ebc1c40
2 changed files with 4 additions and 4 deletions
|
@ -543,8 +543,8 @@ class TestFTPClass(TestCase):
|
|||
self.assertFalse(self.client.passiveserver)
|
||||
|
||||
def test_voidcmd(self):
|
||||
self.client.voidcmd('echo 200')
|
||||
self.client.voidcmd('echo 299')
|
||||
self.assertEqual(self.client.voidcmd('echo 200'), '200')
|
||||
self.assertEqual(self.client.voidcmd('echo 299'), '299')
|
||||
self.assertRaises(ftplib.error_reply, self.client.voidcmd, 'echo 199')
|
||||
self.assertRaises(ftplib.error_reply, self.client.voidcmd, 'echo 300')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue