aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/test/make_document_bucket.cpp
blob: 91af8b4e0a9d7efee101a013031b0bf164983023 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. 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(makeBucketSpace(), bucketId);
}

}