Skip to content

Commit 734b550

Browse files
Trotttargos
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 334fcbe commit 734b550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/common/index.js

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

770-
get enoughTestMeme() {
770+
get enoughTestMem() {
771771
return require('os').totalmem() > 0x70000000; /* 1.75 Gb */
772772
},
773773

0 commit comments

Comments
 (0)