Skip to content

Commit

Permalink
fix: wrong setup in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tr00d committed Mar 4, 2024
1 parent c09d7c0 commit e497cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vonage.Test/Common/Monads/MaybeExtensionsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public async Task Match_ShouldReturnNone_GivenValueIsNone()
[Fact]
public async Task Match_ShouldReturnSome_GivenValueIsSome()
{
var result = await CreateNoneAsync<int>().Match(_ => "some", () => "none");
var result = await CreateSomeAsync(10).Match(_ => "some", () => "none");
result.Should().Be("some");
}

Expand Down

0 comments on commit e497cf0

Please sign in to comment.