summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorLester Solbakken <lesters@users.noreply.github.com>2019-02-11 09:23:52 +0100
committerGitHub <noreply@github.com>2019-02-11 09:23:52 +0100
commit087af5baf3342160a3ae4588688fb9494e1026d2 (patch)
treed773a3c2bcb11b77aeec922095ca0f93865178b4 /searchcore
parentb4f8e5bd2b7e6f496b737eab89f60340bc3c29d3 (diff)
parentc920578953fef858fa0937e86860dc7f49c5dffe (diff)
Merge pull request #8398 from vespa-engine/lesters/dont-render-empty-multivalue-fields
Lesters/dont render empty multivalue fields
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/tests/proton/docsummary/docsummary.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/searchcore/src/tests/proton/docsummary/docsummary.cpp b/searchcore/src/tests/proton/docsummary/docsummary.cpp
index 40c2733d230..fb8674b5255 100644
--- a/searchcore/src/tests/proton/docsummary/docsummary.cpp
+++ b/searchcore/src/tests/proton/docsummary/docsummary.cpp
@@ -778,12 +778,7 @@ Test::requireThatAttributesAreUsed()
"bj", *rep, 0, rclass));
// empty doc
- EXPECT_TRUE(assertSlime("{bd:[],"
- "be:[],"
- "bf:[],"
- "bg:[],"
- "bh:[],"
- "bi:[]}", *rep, 1, false));
+ EXPECT_TRUE(assertSlime("{}", *rep, 1, false));
TEST_DO(assertTensor(Tensor::UP(), "bj", *rep, 1, rclass));
proton::IAttributeManager::SP attributeManager = dc._ddb->getReadySubDB()->getAttributeManager();
@@ -807,9 +802,7 @@ Test::requireThatAttributesAreUsed()
req3.hits.push_back(DocsumRequest::Hit(gid3));
DocsumReply::UP rep3 = dc._ddb->getDocsums(req3);
- EXPECT_TRUE(assertSlime("{bd:[],be:[],bf:[],bg:[],"
- "bh:[],bi:[],"
- "bj:'0x01020178017901016101624010000000000000'}",
+ EXPECT_TRUE(assertSlime("{bj:'0x01020178017901016101624010000000000000'}",
*rep3, 0, true));
}