Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
hashrock committed Aug 21, 2023
1 parent e5c43d8 commit 1adf81f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion blog_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 1adf81f

Please sign in to comment.