diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-04-23 18:57:15 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-04-23 18:57:15 -0700 |
commit | ec7059d79770bb9890abd5c0514b67af7e9d2d52 (patch) | |
tree | b483cfa25f95875ee05e891c00fe0ac2b925d52f /tests | |
parent | d6f61c9fe98a127adc291ac43ca7cdaf62d7b79f (diff) | |
parent | a0bf23a25c39d5c4d61dda29b60b04c1a6fd1c41 (diff) |
Merge branch '1.16'
Diffstat (limited to 'tests')
-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 53b73ee0..e4c2c3a3 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -611,7 +611,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() @@ -621,7 +621,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') |