From 3b6551c14253e6a99301ccc9d0f91307806295ca Mon Sep 17 00:00:00 2001 From: "Henry H. Andrews" Date: Fri, 13 Jun 2025 08:48:45 -0700 Subject: [PATCH] Fix typos --- scripts/schema-test-coverage.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) + "%)", );