summaryrefslogtreecommitdiff
path: root/jstests/replsets/tenant_migration_clones_system_views.js
diff options
context:
space:
mode:
authorauto-revert-processor <dev-prod-dag@mongodb.com>2023-01-10 04:53:31 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-10 05:28:35 +0000
commit1d37ab71d4d1aa7baa6cea50cda7be099e53ce60 (patch)
tree7bb70ee6f50efb26719549b6f5fb220818194117 /jstests/replsets/tenant_migration_clones_system_views.js
parent23acbaa87ef1cbf9e2136c0ad63c32efd0c39bd4 (diff)
downloadmongo-1d37ab71d4d1aa7baa6cea50cda7be099e53ce60.tar.gz
Revert "SERVER-72577 Convert tenant migrations tests to use es modules"
This reverts commit 9c2d2f716db7924c7fe12af379437f637efba744.
Diffstat (limited to 'jstests/replsets/tenant_migration_clones_system_views.js')
-rw-r--r--jstests/replsets/tenant_migration_clones_system_views.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/jstests/replsets/tenant_migration_clones_system_views.js b/jstests/replsets/tenant_migration_clones_system_views.js
index b1a93f254f3..27721e53389 100644
--- a/jstests/replsets/tenant_migration_clones_system_views.js
+++ b/jstests/replsets/tenant_migration_clones_system_views.js
@@ -11,8 +11,11 @@
* ]
*/
-import {TenantMigrationTest} from "jstests/replsets/libs/tenant_migration_test.js";
+(function() {
+"use strict";
+
load("jstests/libs/uuid_util.js");
+load("jstests/replsets/libs/tenant_migration_test.js");
const tenantMigrationTest = new TenantMigrationTest({name: jsTestName()});
@@ -56,3 +59,4 @@ assert.eq(1, findRes.length, `find result: ${tojson(findRes)}`);
assert.eq([doc1], findRes);
tenantMigrationTest.stop();
+})();