From 178685bc9c0f64c033278428187f89de125930bd Mon Sep 17 00:00:00 2001 From: Ruthenic Date: Wed, 7 Dec 2022 17:55:24 -0500 Subject: [PATCH] my linter is the damndest of linters --- tests/chapter.ts | 2 +- tests/work.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/chapter.ts b/tests/chapter.ts index a3c7d60..78df36d 100644 --- a/tests/chapter.ts +++ b/tests/chapter.ts @@ -2,7 +2,7 @@ import AO3 from "../mod.ts"; import { assert } from "https://deno.land/std@0.167.0/testing/asserts.ts"; -export default async function test(ao3: AO3) { +export default function test(ao3: AO3) { Deno.test("chapters", async (test) => { const work = await ao3.getWork("43251729"); await work.init(); diff --git a/tests/work.ts b/tests/work.ts index 63080fb..f797ae0 100644 --- a/tests/work.ts +++ b/tests/work.ts @@ -2,7 +2,7 @@ import AO3 from "../mod.ts"; import type { Work } from "../mod.ts"; import { assert } from "https://deno.land/std@0.167.0/testing/asserts.ts"; -export default async function test(ao3: AO3) { +export default function test(ao3: AO3) { Deno.test("works", async (test) => { let work: Work; await test.step("initialization", async () => {