From dcd01dd02530df0e799eb4227087680ffeb80d74 Mon Sep 17 00:00:00 2001 From: Vincent LE GOFF Date: Wed, 24 Apr 2019 13:41:23 +0200 Subject: Eslint fixes (denoland/deno_std#356) Make warnings fail Original: https://github.com/denoland/deno_std/commit/4543b563a9a01c8c168aafcbfd9d4634effba7fc --- strings/pad_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'strings') diff --git a/strings/pad_test.ts b/strings/pad_test.ts index 43c80b36f..e0364cf38 100644 --- a/strings/pad_test.ts +++ b/strings/pad_test.ts @@ -2,7 +2,7 @@ import { test } from "../testing/mod.ts"; import { assertEquals } from "../testing/asserts.ts"; import { pad } from "./pad.ts"; -test(function padTest() { +test(function padTest(): void { const expected1 = "**deno"; const expected2 = "deno"; const expected3 = "deno**"; -- cgit v1.2.3