diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-04-23 18:57:13 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-04-23 18:57:13 -0700 |
commit | a0bf23a25c39d5c4d61dda29b60b04c1a6fd1c41 (patch) | |
tree | 14a49408fd2d4248e8ce45650d9c73435f8522af /tests/test_sftp.py | |
parent | 294bc5eb4b66f72366b275715fbf33b10ed764e6 (diff) | |
parent | c312b620e7945797468702aeb27cb58def3f0f80 (diff) |
Merge branch '1.15' into 1.16
Diffstat (limited to 'tests/test_sftp.py')
-rwxr-xr-x | tests/test_sftp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index 131b8abf..ff146ade 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -610,7 +610,7 @@ class SFTPTest (unittest.TestCase): with sftp.open(FOLDER + '/bunny.txt', 'rb') as f: self.assertEqual(text, f.read(128)) - self.assertEqual((41, 41), saved_progress[-1]) + self.assertEqual([(41, 41)], saved_progress) os.unlink(localname) fd, localname = mkstemp() @@ -620,7 +620,7 @@ class SFTPTest (unittest.TestCase): with open(localname, 'rb') as f: self.assertEqual(text, f.read(128)) - self.assertEqual((41, 41), saved_progress[-1]) + self.assertEqual([(41, 41)], saved_progress) os.unlink(localname) sftp.unlink(FOLDER + '/bunny.txt') |