diff options
author | vrachev <vlad.rachev@mongodb.com> | 2020-03-04 15:15:30 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-03-04 23:21:38 +0000 |
commit | 06400d409ec8cb33bb93ffaad7c0088902af77bd (patch) | |
tree | 83535ef4961dd7f0e476d360833995fb24943f61 | |
parent | 9557a35b779a5f6c1a2453514ec9cc67119b288b (diff) | |
download | mongo-06400d409ec8cb33bb93ffaad7c0088902af77bd.tar.gz |
SERVER-46322 Fix verify_versions_test.js for 4.5
-rw-r--r-- | jstests/multiVersion/verify_versions_test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/multiVersion/verify_versions_test.js b/jstests/multiVersion/verify_versions_test.js index e592f154f40..535bdd0c142 100644 --- a/jstests/multiVersion/verify_versions_test.js +++ b/jstests/multiVersion/verify_versions_test.js @@ -40,10 +40,10 @@ function assertBinVersionComparesEqual(v1, v2) { "Expected \"" + v1 + "\" to compare equal to \"" + v2 + "\""); } -// The current version is in the 4.3 series. This has to be changed very time we bump +// 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.3", version()); -assertBinVersionComparesEqual("4.3", version()); +assertBinVersionsEqual("4.5", version()); +assertBinVersionComparesEqual("4.5", version()); // "latest" is the same version as the shell, "last-stable" is not. assertBinVersionsEqual("latest", version()); |