summaryrefslogtreecommitdiff
path: root/test/etap/064-kt-counting.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/etap/064-kt-counting.t')
-rwxr-xr-xtest/etap/064-kt-counting.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/etap/064-kt-counting.t b/test/etap/064-kt-counting.t
index dd00cedd..aa42fec6 100755
--- a/test/etap/064-kt-counting.t
+++ b/test/etap/064-kt-counting.t
@@ -18,7 +18,7 @@ test() ->
One = [{0, {"1","foo",[]}}],
TwoChildSibs = [{0, {"1","foo", [{"1a", "bar", []}, {"1b", "bar", []}]}}],
Stemmed = [{2, {"1bb", "boo", []}}],
-
+
etap:is(0, couch_key_tree:count_leafs(EmptyTree),
"Empty trees have no leaves."),
@@ -27,8 +27,8 @@ test() ->
etap:is(2, couch_key_tree:count_leafs(TwoChildSibs),
"Two children siblings counted as two leaves."),
-
+
etap:is(1, couch_key_tree:count_leafs(Stemmed),
"Stemming does not affect leaf counting."),
-
+
ok.