summaryrefslogtreecommitdiff
path: root/test/etap/050-stream.t
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2009-07-06 00:33:50 +0000
committerNoah Slater <nslater@apache.org>2009-07-06 00:33:50 +0000
commit282b96ddd9a84b740788c2358ec0f5fedafb7cc6 (patch)
treefb48e605ceb8079d0195d3b1ec0eca7110fa7ef2 /test/etap/050-stream.t
parentb5cc085d3bc6316063f14adedf20632ee904875d (diff)
trimmed trailing whitespace
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@791350 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/etap/050-stream.t')
-rwxr-xr-xtest/etap/050-stream.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/etap/050-stream.t b/test/etap/050-stream.t
index dab2d50c..bb28a96b 100755
--- a/test/etap/050-stream.t
+++ b/test/etap/050-stream.t
@@ -20,7 +20,7 @@ read_all(Fd, PosList) ->
test() ->
{ok, Fd} = couch_file:open("test/etap/temp.050", [create,overwrite]),
{ok, Stream} = couch_stream:open(Fd),
-
+
etap:is(ok, couch_stream:write(Stream, <<"food">>),
"Writing to streams works."),
@@ -43,16 +43,16 @@ test() ->
"Successfully wrote 80 1 bits."),
ZeroBits = <<0:(8*10)>>,
- etap:is(ok, couch_stream:write(Stream2, ZeroBits),
+ etap:is(ok, couch_stream:write(Stream2, ZeroBits),
"Successfully wrote 80 0 bits."),
-
+
{Ptrs2, Length2} = couch_stream:close(Stream2),
etap:is(Ptrs2, [ExpPtr], "Closing stream returns the file pointers."),
etap:is(Length2, 20, "Length written is 160 bytes."),
AllBits = iolist_to_binary([OneBits,ZeroBits]),
etap:is(AllBits, read_all(Fd, Ptrs2), "Returned pointers are valid."),
-
+
% Stream more the 4K chunk size.
{ok, ExpPtr2} = couch_file:bytes(Fd),
{ok, Stream3} = couch_stream:open(Fd),