Skip to content

Commit 1ac098b

Browse files
committed
fix: format remoteAbi.test.ts with prettier
1 parent 0e6e5d7 commit 1ac098b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/unit/remoteAbi.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,9 @@ describe("Remote ABI", () => {
422422
).toThrow();
423423

424424
// Signed arrays shouldn't work though
425-
expect(() => checkOrConvertArgument(new Int8Array([1, 2, 3]) as any, parseTypeTag("vector<u8>"), 0, [])).toThrow();
425+
expect(() =>
426+
checkOrConvertArgument(new Int8Array([1, 2, 3]) as any, parseTypeTag("vector<u8>"), 0, []),
427+
).toThrow();
426428
expect(() =>
427429
checkOrConvertArgument(new Int16Array([1, 2, 3]) as any, parseTypeTag("vector<u16>"), 0, []),
428430
).toThrow();

0 commit comments

Comments
 (0)