Skip to content

Commit 65a6588

Browse files
committed
Fix formatting
1 parent 32d2dfe commit 65a6588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/result_err_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Deno.test("err(n).andThen() returns err(n)", () => {
125125

126126
Deno.test("err().chain() short-circuits", () => {
127127
const a: Result<number, string> = err<string>("oops").chain<number, boolean>(
128-
() => ok(42)
128+
() => ok(42),
129129
);
130130

131131
expect(a.isErr()).toBe(true);

0 commit comments

Comments
 (0)