summaryrefslogtreecommitdiff
path: root/testing/asserts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'testing/asserts.ts')
-rw-r--r--testing/asserts.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/asserts.ts b/testing/asserts.ts
index 28dfa7911..230e2c8d2 100644
--- a/testing/asserts.ts
+++ b/testing/asserts.ts
@@ -235,7 +235,7 @@ export function assertArrayContains(
expected: unknown[],
msg?: string
): void {
- let missing: unknown[] = [];
+ const missing: unknown[] = [];
for (let i = 0; i < expected.length; i++) {
let found = false;
for (let j = 0; j < actual.length; j++) {