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 <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: David Carlier <[email protected]>
1 parent 21ef3d6 commit dadccb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/common/index.js

Lines changed: 1 addition & 1 deletion
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)