diff options
author | 2023-03-07 18:44:01 -0800 | |
---|---|---|
committer | 2023-03-07 18:44:12 -0800 | |
commit | 24e90726fd88ad8d629b898afe2d35d0fdae0190 (patch) | |
tree | f4fd488e522ff3ad7e379c4b00313d1bf8e0cf6d /test/js/deno/html/blob.test.ts | |
parent | cac4012a7e939af8a53fc2e949e336efafab3bfb (diff) | |
download | bun-24e90726fd88ad8d629b898afe2d35d0fdae0190.tar.gz bun-24e90726fd88ad8d629b898afe2d35d0fdae0190.tar.zst bun-24e90726fd88ad8d629b898afe2d35d0fdae0190.zip |
run prettier
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"); }); |