summaryrefslogtreecommitdiff
path: root/std/datetime/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/datetime/test.ts')
-rw-r--r--std/datetime/test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/datetime/test.ts b/std/datetime/test.ts
index b9f6565cb..3e42365ca 100644
--- a/std/datetime/test.ts
+++ b/std/datetime/test.ts
@@ -64,11 +64,11 @@ Deno.test({
name: "[std/datetime] invalidParseDateTimeFormatThrows",
fn: () => {
assertThrows((): void => {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ // deno-lint-ignore no-explicit-any
(datetime as any).parse("2019-01-01 00:00", "x-y-z");
}, Error);
assertThrows((): void => {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ // deno-lint-ignore no-explicit-any
(datetime as any).parse("2019-01-01", "x-y-z");
}, Error);
},