summaryrefslogtreecommitdiff
path: root/test/etap/040-util.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/040-util.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/040-util.t')
-rwxr-xr-xtest/etap/040-util.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/etap/040-util.t b/test/etap/040-util.t
index a6b7df33..94db4534 100755
--- a/test/etap/040-util.t
+++ b/test/etap/040-util.t
@@ -19,13 +19,13 @@ test() ->
% to_existing_atom
etap:is(true, couch_util:to_existing_atom(true), "An atom is an atom."),
etap:is(foo, couch_util:to_existing_atom(<<"foo">>),
- "A binary foo is the atom foo."),
+ "A binary foo is the atom foo."),
etap:is(foobarbaz, couch_util:to_existing_atom("foobarbaz"),
"A list of atoms is one munged atom."),
% terminate_linked
Self = self(),
- spawn(fun() ->
+ spawn(fun() ->
ChildPid = spawn_link(fun() -> receive shutdown -> ok end end),
couch_util:terminate_linked(normal),
Self ! {pid, ChildPid}
@@ -33,7 +33,7 @@ test() ->
receive
{pid, Pid} ->
etap:ok(not is_process_alive(Pid), "why wont this work?")
- end,
+ end,
% new_uuid
etap:isnt(couch_util:new_uuid(), couch_util:new_uuid(),
@@ -68,5 +68,5 @@ test() ->
etap:ok(not couch_util:should_flush(),
"Checking to flush invokes GC."),
-
+
ok.