aboutsummaryrefslogtreecommitdiff
path: root/test/js/deno/html/blob.test.ts
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-03-07 18:44:01 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-03-07 18:44:12 -0800
commit24e90726fd88ad8d629b898afe2d35d0fdae0190 (patch)
treef4fd488e522ff3ad7e379c4b00313d1bf8e0cf6d /test/js/deno/html/blob.test.ts
parentcac4012a7e939af8a53fc2e949e336efafab3bfb (diff)
downloadbun-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.ts5
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");
});