summaryrefslogtreecommitdiff
path: root/jstests/auth/rename_encrypted_collection.js
diff options
context:
space:
mode:
authorMatt Kneiser <matt.kneiser@mongodb.com>2022-12-02 15:24:23 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-12-02 16:28:12 +0000
commita879733c3c19b420ed86d20bfd60cb835ccb64d4 (patch)
treefb43c564088422d57d5017db7068123a567e6da6 /jstests/auth/rename_encrypted_collection.js
parent8debef920f2151e833d6ba524c13c4c7b89eeebf (diff)
downloadmongo-a879733c3c19b420ed86d20bfd60cb835ccb64d4.tar.gz
SERVER-70552 Cleanup renames across databases
Diffstat (limited to 'jstests/auth/rename_encrypted_collection.js')
-rw-r--r--jstests/auth/rename_encrypted_collection.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/auth/rename_encrypted_collection.js b/jstests/auth/rename_encrypted_collection.js
index 76b01f9e62d..b9240bf650c 100644
--- a/jstests/auth/rename_encrypted_collection.js
+++ b/jstests/auth/rename_encrypted_collection.js
@@ -53,7 +53,7 @@ function runTestWithAuth(conn, allowsRename, verifyFunction) {
if (!allowsRename) {
verifyFunction(dbSrc.adminCommand(
{renameCollection: dbSrc + ".encrypted", to: dbTgt + ".unencrypted"}),
- "Renaming an encrypted collection between DBs passed",
+ "Renaming an encrypted collection across DBs passed",
srcEncryptedErrmsg);
}
@@ -70,7 +70,7 @@ function runTestWithAuth(conn, allowsRename, verifyFunction) {
to: dbTgt + ".encrypted",
dropTarget: true
}),
- "Renaming to an encrypted collection between DBs passed",
+ "Renaming to an encrypted collection across DBs passed",
tgtEncryptedErrmsg);
}
}