summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEsha Maharishi <esha.maharishi@mongodb.com>2018-12-11 22:05:49 -0500
committerEsha Maharishi <esha.maharishi@mongodb.com>2019-01-06 18:03:30 -0500
commit1c8752872a8f940b22a67c218a1ccb1b75f76375 (patch)
tree3c7806d9f4ff439161ce1a28806bd989051af10c
parent4ba270ae658ab890a3cd2c6b6edd4e73c639e8ad (diff)
downloadmongo-1c8752872a8f940b22a67c218a1ccb1b75f76375.tar.gz
SERVER-38415 Remove erroneous variable from error message string
(cherry picked from commit 5d7bc8850eb0fdfde2d4279e0763d61dc539c68c)
-rw-r--r--jstests/libs/check_log.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/libs/check_log.js b/jstests/libs/check_log.js
index 07f4035d07a..893fd812b03 100644
--- a/jstests/libs/check_log.js
+++ b/jstests/libs/check_log.js
@@ -70,8 +70,8 @@ var checkLog;
return expectedCount === count;
},
- 'Expected ' + expectedCount + ', but instead saw ' + count +
- ' log entries containing the following message: ' + msg,
+ 'Expected ' + expectedCount + ' log entries containing the following message: ' +
+ msg + ' on node ' + conn.name,
5 * 60 * 1000,
300);
};