diff --git a/scripts/schema-test-coverage.mjs b/scripts/schema-test-coverage.mjs index 3eea24b060..82e7f822b2 100644 --- a/scripts/schema-test-coverage.mjs +++ b/scripts/schema-test-coverage.mjs @@ -197,8 +197,8 @@ if (notCovered.length > 0) { console.log( "Covered:", - (allocations.length - notCovered.length), + (allLocations.length - notCovered.length), "of", allLocations.length, - "(" + Math.floor(((allocations.length - notCovered.length) / allLocations.length) * 100) + "%)", + "(" + Math.floor(((allLocations.length - notCovered.length) / allLocations.length) * 100) + "%)", );