Skip to content

Commit e68d86c

Browse files
TrottBethGriggs
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 b7ff93f commit e68d86c

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
@@ -767,7 +767,7 @@ module.exports ={
767767
returnArray.isArray(cpus)&&(cpus.length>1||cpus[0].speed>999);
768768
},
769769

770-
getenoughTestMeme(){
770+
getenoughTestMem(){
771771
returnrequire('os').totalmem()>0x70000000;/* 1.75 Gb */
772772
},
773773

0 commit comments

Comments
(0)