From 7b4cd51b7693f401e926b5e25dcfd1b014e9815f Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Wed, 3 Aug 2005 06:57:51 +0000 Subject: [project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-49] dumb tiny tweaks --- tests/test_sftp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests') 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: -- cgit v1.2.3