diff options
author | Robey Pointer <robey@lag.net> | 2005-08-03 06:57:51 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2005-08-03 06:57:51 +0000 |
commit | 7b4cd51b7693f401e926b5e25dcfd1b014e9815f (patch) | |
tree | 48f374f403fdb40435fbf10e507de82f97ce3957 /tests | |
parent | eb60811594711e8aed9b8cabeb2949ad74c82843 (diff) |
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-49]
dumb tiny tweaks
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_sftp.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index d5de063d..fdbbe1ae 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -433,14 +433,13 @@ class SFTPTest (unittest.TestCase): def test_E_big_file(self): """ write a 1MB file, with no linefeeds, using line buffering. - FIXME: this is slow! what causes the slowness? """ global g_big_file_test if not g_big_file_test: return kblob = (1024 * 'x') try: - f = sftp.open('%s/hongry.txt' % FOLDER, 'w', 1) + f = sftp.open('%s/hongry.txt' % FOLDER, 'w') for n in range(1024): f.write(kblob) if n % 128 == 0: |