Skip to content

Commit 9d70107

Browse files
Trottcodebytere
authored andcommitted
test: fix typo in common/index.js
All tests using enoughTestCpu checks are always having the checks come back false due to a typo in common/index.js. Fix the typo. PR-URL: #31931 Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 57a2d95 commit 9d70107

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
@@ -784,7 +784,7 @@ module.exports = {
784784
skipIfReportDisabled,
785785
skipIfWorker,
786786

787-
get enoughTestCPU() {
787+
get enoughTestCpu() {
788788
const cpus = require('os').cpus();
789789
return Array.isArray(cpus) && (cpus.length > 1 || cpus[0].speed > 999);
790790
},

0 commit comments

Comments
 (0)