summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@10gen.com>2020-09-09 10:47:40 -0400
committerRobert Guo <robert.guo@10gen.com>2020-09-09 10:56:58 -0400
commitc9836d0ea3ed1422c14cd71c8fa851b8762a2d5e (patch)
tree29db3e440cddcfe5a1192f6d79209bfcb5dfd404
parent598bd617db565884c115d4991e566c05b98e1c86 (diff)
downloadmongo-c9836d0ea3ed1422c14cd71c8fa851b8762a2d5e.tar.gz
SERVER-50719 Fix verify_versions_test.js for 4.7.0
-rw-r--r--jstests/multiVersion/verify_versions_test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/multiVersion/verify_versions_test.js b/jstests/multiVersion/verify_versions_test.js
index f1a574c9b63..3f46a043f6c 100644
--- a/jstests/multiVersion/verify_versions_test.js
+++ b/jstests/multiVersion/verify_versions_test.js
@@ -42,8 +42,8 @@ function assertBinVersionComparesEqual(v1, v2) {
// The current version is in the 4.5 series. This has to be changed very time we bump
// the major version pair, but it provides a useful test of assumptions.
-assertBinVersionsEqual("4.5", version());
-assertBinVersionComparesEqual("4.5", version());
+assertBinVersionsEqual("4.7", version());
+assertBinVersionComparesEqual("4.7", version());
// "latest" is the same version as the shell, "last-lts" is not.
assertBinVersionsEqual("latest", version());