This is an automated email from the ASF dual-hosted git repository. davisp pushed a commit to branch optimize-doc-updates in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 2c2bf4fa48e3ee6a5427b1f266e852cc3a0a7852 Author: Paul J. Davis <[email protected]> AuthorDate: Thu Nov 2 16:11:03 2017 -0500 Fix should_merge_tree_of_odd_length test This test was invalid as merging does not support anything but a linear path. This merge failure was covered up by stemming completely disassembling and reassembling the badly merged tree. --- src/couch/test/couch_key_tree_tests.erl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/couch/test/couch_key_tree_tests.erl b/src/couch/test/couch_key_tree_tests.erl index fb332d1..97ef33d 100644 --- a/src/couch/test/couch_key_tree_tests.erl +++ b/src/couch/test/couch_key_tree_tests.erl @@ -187,9 +187,8 @@ should_merge_tree_of_odd_length()-> {"1b", "bar", []}]}}, TwoChildPlusSibs = {1, {"1","foo", [{"1a", "bar", [{"1aa", "bar", []}]}, {"1b", "bar", []}]}}, - - ?_assertEqual({[TwoChildPlusSibs], new_branch}, - couch_key_tree:merge([TwoChild], TwoChildSibs, ?DEPTH)). + ?_assertEqual({[TwoChildPlusSibs], new_leaf}, + couch_key_tree:merge([TwoChildSibs], TwoChild, ?DEPTH)). should_merge_tree_with_stem()-> Stemmed = {2, {"1a", "bar", []}}, -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
