Skip to content

Commit

Permalink
missed this change to set min-supported node for mongodb tests in reg…
Browse files Browse the repository at this point in the history
…ular unit-tests
  • Loading branch information
trentm committed Mar 4, 2024
1 parent c07c2a1 commit fbfbc78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/_is_mongodb_incompat.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function isMongodbIncompat() {
return msg;
}
} else if (semver.satisfies(mongodbVer, '>=6.0.0')) {
if (!semver.satisfies(nodeVer, '>=15.0.0')) {
if (!semver.satisfies(nodeVer, '>=16.20.1')) {
return msg;
}
}
Expand Down

0 comments on commit fbfbc78

Please sign in to comment.