diff options
Diffstat (limited to 'jstests/replsets/tenant_migration_recipient_initial_sync_cloning.js')
-rw-r--r-- | jstests/replsets/tenant_migration_recipient_initial_sync_cloning.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/jstests/replsets/tenant_migration_recipient_initial_sync_cloning.js b/jstests/replsets/tenant_migration_recipient_initial_sync_cloning.js index d085b7645d3..1f4f377f59c 100644 --- a/jstests/replsets/tenant_migration_recipient_initial_sync_cloning.js +++ b/jstests/replsets/tenant_migration_recipient_initial_sync_cloning.js @@ -14,14 +14,15 @@ * ] */ -import {TenantMigrationTest} from "jstests/replsets/libs/tenant_migration_test.js"; -import {makeX509OptionsForTest} from "jstests/replsets/libs/tenant_migration_util.js"; +(function() { +"use strict"; load("jstests/libs/fail_point_util.js"); load("jstests/libs/uuid_util.js"); +load("jstests/replsets/libs/tenant_migration_test.js"); load('jstests/replsets/rslib.js'); // for waitForNewlyAddedRemovalForNodeToBeCommitted -const migrationX509Options = makeX509OptionsForTest(); +const migrationX509Options = TenantMigrationUtil.makeX509OptionsForTest(); const testDBName = 'testDB'; const testCollName = 'testColl'; @@ -200,3 +201,4 @@ runTestCase('tenantId4', "fpAfterWaitForRejectReadsBeforeTimestamp", true /* checkMtab */, restartNodeAndCheckStateWithoutOplogApplication); +})(); |