From cde4dbb35132848ffece59ef9cfaccff32347124 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 14 Jul 2020 15:24:17 -0400 Subject: Use dprint for internal formatting (#6682) --- docs/testing/assertions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/testing') diff --git a/docs/testing/assertions.md b/docs/testing/assertions.md index 93b73da96..b8874a0e9 100644 --- a/docs/testing/assertions.md +++ b/docs/testing/assertions.md @@ -150,7 +150,7 @@ Deno.test("Test Assert Throws", () => { throw new Error("Panic!"); }, Error, - "Panic!" + "Panic!", ); }); ``` @@ -168,7 +168,7 @@ Deno.test("Test Assert Throws Async", () => { }); }, Error, - "Panic! Threw Error" + "Panic! Threw Error", ); assertThrowsAsync( @@ -176,7 +176,7 @@ Deno.test("Test Assert Throws Async", () => { return Promise.reject(new Error("Panic! Reject Error")); }, Error, - "Panic! Reject Error" + "Panic! Reject Error", ); }); ``` -- cgit v1.2.3