Skip to content

Commit 22b2e9b

Browse files
committed
Attempt to commit failing code
1 parent 94dd05f commit 22b2e9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/option_none_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Deno.test("none().unwrapOr(n) returns n", () => {
3434
});
3535

3636
Deno.test("none().unwrapOrElse(n) returns n()", () => {
37-
expect(none<number>().unwrapOrElse(() => 42)).toBe(42);
37+
expect(none().unwrapOrElse(() => 42)).toBe(42);
3838
});
3939

4040
Deno.test("none().map() returns none()", () => {

0 commit comments

Comments
 (0)