Skip to content

Commit e58c122

Browse files
committed
Fix linter errors
1 parent fde2a04 commit e58c122

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/core/testsuite/fd_write-to-stdout.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ const iov = memory.data(sizeof<iovec>());
1515
store<u32>(iov, utf8buf, 0);
1616
store<u32>(iov, utf8len, sizeof<usize>());
1717

18-
const out_size = memory.data(sizeof<usize>());
18+
const outSize = memory.data(sizeof<usize>());
1919

20-
const err = fd_write(1, iov, 1, out_size);
20+
const err = fd_write(1, iov, 1, outSize);
2121
__free(utf8buf);
2222

23-
assert(load<usize>(out_size) == message.length);
23+
assert(load<usize>(outSize) == message.length);
2424

2525
assert(err == errno.SUCCESS);

0 commit comments

Comments
 (0)