summaryrefslogtreecommitdiff
path: root/src/mongo/s/catalog_cache_refresh_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/catalog_cache_refresh_test.cpp')
-rw-r--r--src/mongo/s/catalog_cache_refresh_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/catalog_cache_refresh_test.cpp b/src/mongo/s/catalog_cache_refresh_test.cpp
index 50165ab3571..3ba23ed1085 100644
--- a/src/mongo/s/catalog_cache_refresh_test.cpp
+++ b/src/mongo/s/catalog_cache_refresh_test.cpp
@@ -38,7 +38,7 @@
#include "mongo/s/catalog/type_database.h"
#include "mongo/s/catalog_cache.h"
#include "mongo/s/catalog_cache_test_fixture.h"
-#include "mongo/s/database_version_helpers.h"
+#include "mongo/s/database_version.h"
#include "mongo/unittest/death_test.h"
namespace mongo {
@@ -59,7 +59,7 @@ protected:
void expectGetDatabase() {
expectFindSendBSONObjVector(kConfigHostAndPort, [&]() {
- DatabaseType db(kNss.db().toString(), {"0"}, true, databaseVersion::makeNew());
+ DatabaseType db(kNss.db().toString(), {"0"}, true, DatabaseVersion(UUID::gen()));
return std::vector<BSONObj>{db.toBSON()};
}());
}