mirror of https://github.com/python/cpython
test_ftplib: silence a BytesWarning when checking TypeError
This commit is contained in:
commit
c2464bf5c6
|
@ -591,6 +591,7 @@ class TestFTPClass(TestCase):
|
|||
|
||||
f = io.StringIO(RETR_DATA.replace('\r\n', '\n'))
|
||||
# storlines() expects a binary file, not a text file
|
||||
with support.check_warnings(('', BytesWarning), quiet=True):
|
||||
self.assertRaises(TypeError, self.client.storlines, 'stor foo', f)
|
||||
|
||||
def test_nlst(self):
|
||||
|
|
Loading…
Reference in New Issue