aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/tests
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-01-23 09:23:47 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-01-23 09:23:47 +0000
commite7f0c18c77929909632121f9baa52805addc4842 (patch)
tree9b6a8d59c8797f01689eab91993c82c1c225a1c0 /document/src/tests
parent5d2e89d0e9fea8e19720dedfca283f4f788958d7 (diff)
Move the transaction implementation from StructuredFieldValue to Document
Diffstat (limited to 'document/src/tests')
-rw-r--r--document/src/tests/documenttestcase.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/document/src/tests/documenttestcase.cpp b/document/src/tests/documenttestcase.cpp
index 9990c00f57e..956f2d07e85 100644
--- a/document/src/tests/documenttestcase.cpp
+++ b/document/src/tests/documenttestcase.cpp
@@ -36,9 +36,9 @@ TEST(DocumentTest, testSizeOf)
EXPECT_EQ(32u, sizeof(vespalib::GrowableByteBuffer));
EXPECT_EQ(88ul, sizeof(IdString));
EXPECT_EQ(104ul, sizeof(DocumentId));
- EXPECT_EQ(256ul, sizeof(Document));
- EXPECT_EQ(120ul, sizeof(StructFieldValue));
- EXPECT_EQ(24ul, sizeof(StructuredFieldValue));
+ EXPECT_EQ(248ul, sizeof(Document));
+ EXPECT_EQ(112ul, sizeof(StructFieldValue));
+ EXPECT_EQ(16ul, sizeof(StructuredFieldValue));
EXPECT_EQ(72ul, sizeof(SerializableArray));
}