Skip to content

Commit 62319d1

Browse files
committed
chore: linting
1 parent 3c39ecd commit 62319d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ const messagesToReadableStream = (messages: Array<JSONRPCMessage>) => {
8383
*/
8484
const safeJsonValueArb = fc
8585
.json()
86-
.map((value) => JSON.parse(value.replaceAll('__proto__', 'proto')) as JSONValue)
86+
.map(
87+
(value) => JSON.parse(value.replaceAll('__proto__', 'proto')) as JSONValue,
88+
)
8789
.noShrink();
8890

8991
const safeJsonObjectArb = fc.dictionary(

0 commit comments

Comments
 (0)