summaryrefslogtreecommitdiff
path: root/jstests/ssl_x509
diff options
context:
space:
mode:
authorGregory Noma <gregory.noma@gmail.com>2022-05-02 22:20:07 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-02 23:31:55 +0000
commit7eced17c3b5e1cf85284cf0f18bdc53d4bc97263 (patch)
tree048eab8e7f4c4deec02f0cd657a3e4e1e7f796bf /jstests/ssl_x509
parenteea1c78a009e0d477a825674dbf41e83afa4970b (diff)
downloadmongo-7eced17c3b5e1cf85284cf0f18bdc53d4bc97263.tar.gz
SERVER-65918 Remove references to `ephemeralForTest`
Diffstat (limited to 'jstests/ssl_x509')
-rw-r--r--jstests/ssl_x509/initial_sync1_x509.js3
-rw-r--r--jstests/ssl_x509/shell_x509_system_user.js3
-rw-r--r--jstests/ssl_x509/upgrade_to_x509_ssl.js3
3 files changed, 3 insertions, 6 deletions
diff --git a/jstests/ssl_x509/initial_sync1_x509.js b/jstests/ssl_x509/initial_sync1_x509.js
index b9d66693f6b..54366303f76 100644
--- a/jstests/ssl_x509/initial_sync1_x509.js
+++ b/jstests/ssl_x509/initial_sync1_x509.js
@@ -16,8 +16,7 @@ function runInitialSyncTest() {
// ReplSetTest cannot be done automatically without the shell performing such authentication, so
// in this test we must make the choice explicitly, based on the global test options.
var wcMajorityJournalDefault;
- if (jsTestOptions().noJournal || jsTestOptions().storageEngine == "ephemeralForTest" ||
- jsTestOptions().storageEngine == "inMemory") {
+ if (jsTestOptions().noJournal || jsTestOptions().storageEngine == "inMemory") {
wcMajorityJournalDefault = false;
} else {
wcMajorityJournalDefault = true;
diff --git a/jstests/ssl_x509/shell_x509_system_user.js b/jstests/ssl_x509/shell_x509_system_user.js
index 0f7af04d95a..adca45975e8 100644
--- a/jstests/ssl_x509/shell_x509_system_user.js
+++ b/jstests/ssl_x509/shell_x509_system_user.js
@@ -9,8 +9,7 @@
// ReplSetTest cannot be done automatically without the shell performing such authentication, so
// in this test we must make the choice explicitly, based on the global test options.
let wcMajorityJournalDefault;
-if (jsTestOptions().noJournal || jsTestOptions().storageEngine == "ephemeralForTest" ||
- jsTestOptions().storageEngine == "inMemory") {
+if (jsTestOptions().noJournal || jsTestOptions().storageEngine == "inMemory") {
wcMajorityJournalDefault = false;
} else {
wcMajorityJournalDefault = true;
diff --git a/jstests/ssl_x509/upgrade_to_x509_ssl.js b/jstests/ssl_x509/upgrade_to_x509_ssl.js
index 4fce4143725..4fe966685da 100644
--- a/jstests/ssl_x509/upgrade_to_x509_ssl.js
+++ b/jstests/ssl_x509/upgrade_to_x509_ssl.js
@@ -24,8 +24,7 @@ load("jstests/ssl/libs/ssl_helpers.js");
// ReplSetTest cannot be done automatically without the shell performing such authentication, so
// in this test we must make the choice explicitly, based on the global test options.
var wcMajorityJournalDefault;
-if (jsTestOptions().noJournal || jsTestOptions().storageEngine == "ephemeralForTest" ||
- jsTestOptions().storageEngine == "inMemory") {
+if (jsTestOptions().noJournal || jsTestOptions().storageEngine == "inMemory") {
wcMajorityJournalDefault = false;
} else {
wcMajorityJournalDefault = true;