summaryrefslogtreecommitdiff
path: root/jstests/replsets/tenant_migration_fetch_committed_transactions.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/tenant_migration_fetch_committed_transactions.js')
-rw-r--r--jstests/replsets/tenant_migration_fetch_committed_transactions.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/jstests/replsets/tenant_migration_fetch_committed_transactions.js b/jstests/replsets/tenant_migration_fetch_committed_transactions.js
index b4d7b42de23..77040de41ad 100644
--- a/jstests/replsets/tenant_migration_fetch_committed_transactions.js
+++ b/jstests/replsets/tenant_migration_fetch_committed_transactions.js
@@ -14,8 +14,12 @@
* ]
*/
-import {TenantMigrationTest} from "jstests/replsets/libs/tenant_migration_test.js";
+(function() {
+"use strict";
+
load("jstests/core/txns/libs/prepare_helpers.js");
+load("jstests/replsets/libs/tenant_migration_test.js");
+load("jstests/replsets/libs/tenant_migration_util.js");
load("jstests/replsets/rslib.js");
load("jstests/libs/uuid_util.js");
@@ -135,3 +139,4 @@ TenantMigrationTest.assertCommitted(tenantMigrationTest.waitForMigrationToComple
validateTransactionEntryonRecipient(sessionIdBeforeMigration);
tenantMigrationTest.stop();
+})();