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 15:48:51 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-03-06 15:48:51 +0000
commite64403e6b8035b74fe83792aa136a042eb9c13a3 (patch)
tree349d62f6c75becda5dbe6da48b88a6e342cf0f9f /searchcore/src/tests/proton/documentdb/buckethandler/buckethandler_test.cpp
parent35cb1029bebb96f0c1ef0411fa70798b2fec6e34 (diff)
use docSize more consistently.
Revert some changes to document meta store unit test.
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 0005ca64fbf..ba7c17f1c8d 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.getSize(), testDoc.getLid());
+ testDoc.getTimestamp(), testDoc.getDocSize(), testDoc.getLid());
}
}
}