diff options
author | Robey Pointer <robey@lag.net> | 2006-09-01 13:59:30 -0700 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2006-09-01 13:59:30 -0700 |
commit | df20443b29b0da3e8ad0ebbdab07ed8573406790 (patch) | |
tree | 034fdf041183640425436b304f61e977e2e6c14a /tests | |
parent | 1f4a3f19764bdc7483ae503a946e631681ab3e6e (diff) |
[project @ robey@lag.net-20060901205930-021bcc34e3d5d8c8]
sadly, revert the append optimization -- it breaks for openssh
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_sftp.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index db210131..a4603367 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -649,9 +649,11 @@ class SFTPTest (unittest.TestCase): finally: sftp.unlink(FOLDER + '/zero') - def test_M_seek_append(self): + def XXX_test_M_seek_append(self): """ verify that seek does't affect writes during append. + + does not work except through paramiko. :( openssh fails. """ f = sftp.open(FOLDER + '/append.txt', 'a') try: |