diff options
author | 2022-06-15 07:17:42 -0700 | |
---|---|---|
committer | 2022-06-15 07:17:42 -0700 | |
commit | 56e88fb4dd06e07569ddc3861e2e8e21f71e45b8 (patch) | |
tree | a355df05ffd4665916c3eefb8370e154d1128f72 /integration/bunjs-only-snippets/ffi.test.js | |
parent | d93f09331394148441d142930fea236a9fd73c5c (diff) | |
download | bun-56e88fb4dd06e07569ddc3861e2e8e21f71e45b8.tar.gz bun-56e88fb4dd06e07569ddc3861e2e8e21f71e45b8.tar.zst bun-56e88fb4dd06e07569ddc3861e2e8e21f71e45b8.zip |
direct streams mostly workjarred/direct
Diffstat (limited to 'integration/bunjs-only-snippets/ffi.test.js')
-rw-r--r-- | integration/bunjs-only-snippets/ffi.test.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/integration/bunjs-only-snippets/ffi.test.js b/integration/bunjs-only-snippets/ffi.test.js index 6698ae51b..b8d79887b 100644 --- a/integration/bunjs-only-snippets/ffi.test.js +++ b/integration/bunjs-only-snippets/ffi.test.js @@ -383,7 +383,6 @@ function ffiRunner(types) { var bigArray = new BigUint64Array(8); new Uint8Array(bigArray.buffer).fill(255); var bigIntArray = new BigInt64Array(bigArray.buffer); - expect(identity_uint64_t(bigArray[0])).toBe(bigArray[0]); expect(identity_uint64_t(bigArray[0] - BigInt(1))).toBe( bigArray[0] - BigInt(1) |