From 1adf81f4d4a956298caff9e9e9e3bf58b50d3bdd Mon Sep 17 00:00:00 2001 From: hashrock Date: Tue, 22 Aug 2023 02:55:13 +0900 Subject: [PATCH] fmt --- blog_test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/blog_test.ts b/blog_test.ts index 432d553..d32ee96 100644 --- a/blog_test.ts +++ b/blog_test.ts @@ -153,7 +153,9 @@ Deno.test("posts/ fourth", async () => { }); Deno.test("posts/ seventh", async () => { - const resp = await testHandler(new Request("https://blog.deno.dev/uses-pathname")); + const resp = await testHandler( + new Request("https://blog.deno.dev/uses-pathname"), + ); assert(resp); assertEquals(resp.status, 200); assertEquals(resp.headers.get("content-type"), "text/html; charset=utf-8");