aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-03-06 12:30:42 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-03-06 12:30:42 +0000
commit35cb1029bebb96f0c1ef0411fa70798b2fec6e34 (patch)
treedf8907c9b995e1d5c19a0845ea22668b4681f35c /searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp
parent048a758bca5e4f68b1a4040239041ea5afd21f76 (diff)
Change document meta store api to require document size as argument to
put method. Adjust unit tests to supply (dummy) document size. Change feed view to supply document size.
Diffstat (limited to 'searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp')
-rw-r--r--searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp b/searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp
index f139bf92e44..0005ca64fbf 100644
--- a/searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp
@@ -44,7 +44,7 @@ struct MySubDb
for (size_t i = 0; i < bucketDocs.getDocs().size(); ++i) {
const test::Document &testDoc = bucketDocs.getDocs()[i];
_metaStore.put(testDoc.getGid(), testDoc.getBucket(),
- testDoc.getTimestamp(), testDoc.getLid());
+ testDoc.getTimestamp(), testDoc.getSize(), testDoc.getLid());
}
}
}