summaryrefslogtreecommitdiff
path: root/tests/test_sftp.py
diff options
context:
space:
mode:
authorAdam Meily <meily.adam@gmail.com>2015-09-24 23:16:12 -0400
committerAdam Meily <meily.adam@gmail.com>2015-09-24 23:16:12 -0400
commit787839d3bc41cdd86905df6883b7de2b1bfb165a (patch)
tree1b88474836b6f431f6992fb6a302a02b6d053a28 /tests/test_sftp.py
parente9b9dcaa242d12f917fb44103d6493a686d409a8 (diff)
downloadparamiko-787839d3bc41cdd86905df6883b7de2b1bfb165a.tar.gz
add unit tests for file-like object methods and update changelog and docs
Diffstat (limited to 'tests/test_sftp.py')
-rwxr-xr-xtests/test_sftp.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py
index cb8f7f84..b1829b4c 100755
--- a/tests/test_sftp.py
+++ b/tests/test_sftp.py
@@ -429,6 +429,7 @@ class SFTPTest (unittest.TestCase):
line_number += 1
pos_list.append(loc)
loc = f.tell()
+ self.assertTrue(f.seekable())
f.seek(pos_list[6], f.SEEK_SET)
self.assertEqual(f.readline(), 'Nouzilly, France.\n')
f.seek(pos_list[17], f.SEEK_SET)