diff options
author | 2023-09-16 21:07:01 +0200 | |
---|---|---|
committer | 2023-09-16 12:07:01 -0700 | |
commit | 08426962fa0d4c2f4104d644f0767cb5f93cae65 (patch) | |
tree | 1a51b11457241f80d17579fd84e3eac1fabb99c2 | |
parent | 7f45866d76567dd43286db95526692228da44844 (diff) | |
download | bun-08426962fa0d4c2f4104d644f0767cb5f93cae65.tar.gz bun-08426962fa0d4c2f4104d644f0767cb5f93cae65.tar.zst bun-08426962fa0d4c2f4104d644f0767cb5f93cae65.zip |
fix: failing `array-buffer.test-d.ts` test (#5580)
-rw-r--r-- | packages/bun-types/tests/array-buffer.test-d.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/bun-types/tests/array-buffer.test-d.ts b/packages/bun-types/tests/array-buffer.test-d.ts index 7d28e2097..a3253138e 100644 --- a/packages/bun-types/tests/array-buffer.test-d.ts +++ b/packages/bun-types/tests/array-buffer.test-d.ts @@ -1,5 +1,4 @@ -const buffer = new ArrayBuffer({ - byteLength: 1024, +const buffer = new ArrayBuffer(1024, { maxByteLength: 2048, }); |