summaryrefslogtreecommitdiff
path: root/testing/asserts.ts
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2019-03-12 14:51:51 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-03-12 01:51:51 -0400
commitf124e645263099132025256df8594ca0dc5cc83a (patch)
tree07f0f99b99e55f431f71f4463aa912ab96405f61 /testing/asserts.ts
parent4a97a6e67e93cdbcecde3d9b99092f15d3dfd803 (diff)
fix: eslint errors (denoland/deno_std#265)
Original: https://github.com/denoland/deno_std/commit/61af419bbc5717c2e2552050aacb20ef1b17480b
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 33d6073ea..6d975bbb5 100644
--- a/testing/asserts.ts
+++ b/testing/asserts.ts
@@ -161,7 +161,7 @@ export function assertArrayContains(
actual: unknown[],
expected: unknown[],
msg?: string
-) {
+): void {
let missing = [];
for (let i = 0; i < expected.length; i++) {
let found = false;