diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-04-02 12:57:05 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 12:57:05 +1100 |
commit | 858abbe745aa8188654120d4999ab983b014c197 (patch) | |
tree | 85b314b1e8166aaa9efb2ba1f416abfa00f0b7a8 /tests/unit/blob_test.ts | |
parent | b0c1bd82a85ddb54ffe717a2c158c33c0be99fe8 (diff) |
chore: update `std` submodule to 0.221.0 (#23112)
Diffstat (limited to 'tests/unit/blob_test.ts')
-rw-r--r-- | tests/unit/blob_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/blob_test.ts b/tests/unit/blob_test.ts index 8be6b5d46..b05b5fb7c 100644 --- a/tests/unit/blob_test.ts +++ b/tests/unit/blob_test.ts @@ -85,7 +85,7 @@ Deno.test(async function blobStream() { const read = async (): Promise<void> => { const { done, value } = await reader.read(); if (!done && value) { - bytes = concat(bytes, value); + bytes = concat([bytes, value]); return read(); } }; |