diff options
Diffstat (limited to 'test/js/deno/html/blob.test.ts')
-rw-r--r-- | test/js/deno/html/blob.test.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/js/deno/html/blob.test.ts b/test/js/deno/html/blob.test.ts index 0b50c8452..af1e7f6e8 100644 --- a/test/js/deno/html/blob.test.ts +++ b/test/js/deno/html/blob.test.ts @@ -109,9 +109,6 @@ Deno.test(function blobConstructorNameIsBlob() { Deno.test(function blobCustomInspectFunction() { const blob = new Blob(); - assertEquals( - Deno.inspect(blob), - `Blob { size: 0, type: "" }`, - ); + assertEquals(Deno.inspect(blob), `Blob { size: 0, type: "" }`); assertStringIncludes(Deno.inspect(Blob.prototype), "Blob"); }); |