From 96fe2d10a4da0521b7cd72d90fd42121f9311978 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sun, 6 Oct 2019 01:02:34 +0900 Subject: Update eslint and @typescript-eslint (denoland/deno_std#621) Original: https://github.com/denoland/deno_std/commit/c3fe858f98565edbe8faeb3cf2e5b873304f4f6e --- testing/asserts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/asserts.ts') 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++) { -- cgit v1.2.3