summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough
diff options
context:
space:
mode:
authorHaley Connelly <haley.connelly@mongodb.com>2021-10-27 21:09:21 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-10-27 21:49:01 +0000
commit14c24398c1ed8e2c680ed133c48c976d205868f9 (patch)
treef2dec6a98c948e1b41803f6b08520dd6a6e754d9 /jstests/noPassthrough
parentdea0353a2927370505ae22307d5d72362af9017b (diff)
downloadmongo-14c24398c1ed8e2c680ed133c48c976d205868f9.tar.gz
SERVER-61019 Move clustered_indexes_utils.js content under ClusteredCollectionUtil class
Diffstat (limited to 'jstests/noPassthrough')
-rw-r--r--jstests/noPassthrough/clustered_collection_ttl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/clustered_collection_ttl.js b/jstests/noPassthrough/clustered_collection_ttl.js
index 64707d948da..377fb7fbe4c 100644
--- a/jstests/noPassthrough/clustered_collection_ttl.js
+++ b/jstests/noPassthrough/clustered_collection_ttl.js
@@ -8,13 +8,13 @@
*/
(function() {
"use strict";
-load("jstests/libs/clustered_indexes_utils.js");
+load("jstests/libs/clustered_collection_util.js");
load('jstests/libs/dateutil.js');
// Run TTL monitor constantly to speed up this test.
const conn = MongoRunner.runMongod({setParameter: 'ttlMonitorSleepSecs=1'});
-if (areClusteredIndexesEnabled(conn) == false) {
+if (ClusteredCollectionUtil.areClusteredIndexesEnabled(conn) == false) {
jsTestLog('Skipping test because the clustered indexes feature flag is disabled');
MongoRunner.stopMongod(conn);
return;