Skip to content

Commit dadccb7

Browse files
TrottBridgeAR
authored andcommitted
test: fix common.enoughTestMem
A typo introduced in 1ddcb6d causes common.enoughTestMem to always be false, resulting in a lot of tests being skipped. Fix the typo. PR-URL: #31035 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: David Carlier <devnexen@gmail.com>
1 parent 21ef3d6 commit dadccb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test/common/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ module.exports = {
788788
return Array.isArray(cpus) && (cpus.length > 1 || cpus[0].speed > 999);
789789
},
790790

791-
get enoughTestMeme() {
791+
get enoughTestMem() {
792792
return require('os').totalmem() > 0x70000000; /* 1.75 Gb */
793793
},
794794

0 commit comments

Comments
 (0)