Skip to content

Commit 918c2b6

Browse files
Trottcodebytere
authored andcommittedFeb 27, 2020
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 <shishugi@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent b74c40e commit 918c2b6

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
@@ -717,7 +717,7 @@ module.exports = {
717717
skipIfReportDisabled,
718718
skipIfWorker,
719719

720-
get enoughTestCPU() {
720+
get enoughTestCpu() {
721721
const cpus = require('os').cpus();
722722
return Array.isArray(cpus) && (cpus.length > 1 || cpus[0].speed > 999);
723723
},

0 commit comments

Comments
 (0)
Please sign in to comment.