summaryrefslogtreecommitdiff
path: root/test/etap/050-stream.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/etap/050-stream.t')
-rwxr-xr-xtest/etap/050-stream.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etap/050-stream.t b/test/etap/050-stream.t
index de0dfadb4..676f1e42e 100755
--- a/test/etap/050-stream.t
+++ b/test/etap/050-stream.t
@@ -68,7 +68,7 @@ test() ->
% Stream more the 4K chunk size.
{ok, ExpPtr2} = couch_file:bytes(Fd),
{ok, Stream3} = couch_stream:open(Fd, [{buffer_size, 4096}]),
- Acc2 = lists:foldl(fun(_, Acc) ->
+ lists:foldl(fun(_, Acc) ->
Data = <<"a1b2c">>,
couch_stream:write(Stream3, Data),
[Data | Acc]