diff options
Diffstat (limited to 'tests/testdata')
| -rw-r--r-- | tests/testdata/fmt/with_config/subdir/a.ts | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/testdata/fmt/with_config/subdir/a.ts b/tests/testdata/fmt/with_config/subdir/a.ts index 5474b3aa3..14f22d1b2 100644 --- a/tests/testdata/fmt/with_config/subdir/a.ts +++ b/tests/testdata/fmt/with_config/subdir/a.ts @@ -22,15 +22,11 @@ Deno.test( .statusText, ) const u8a = - new Uint8Array( - await response - .arrayBuffer(), - ) + await response + .bytes() const u8a1 = - new Uint8Array( - await response1 - .arrayBuffer(), - ) + await response1 + .bytes() for ( let i = 0; i < |
