summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--document/src/vespa/document/test/make_document_bucket.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/document/src/vespa/document/test/make_document_bucket.cpp b/document/src/vespa/document/test/make_document_bucket.cpp
index f4d22f7b83f..a24f757c99f 100644
--- a/document/src/vespa/document/test/make_document_bucket.cpp
+++ b/document/src/vespa/document/test/make_document_bucket.cpp
@@ -1,12 +1,13 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "make_document_bucket.h"
+#include "make_bucket_space.h"
namespace document::test {
Bucket makeDocumentBucket(BucketId bucketId)
{
- return Bucket(BucketSpace::placeHolder(), bucketId);
+ return Bucket(makeBucketSpace(), bucketId);
}
}