Skip to content

Commit dd5b291

Browse files
committed
refactor: Simplify assertion with Be
1 parent b4cab6a commit dd5b291

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

solution/c#/Day14/Day14.Tests/LangExt/FizzBuzzTests.cs

-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using FluentAssertions;
21
using FluentAssertions.LanguageExt;
32
using Xunit;
43

@@ -23,9 +22,6 @@ public void Returns_Number_Representation(int input, string expectedResult)
2322
=> Day14.LangExt.FizzBuzz
2423
.Convert(input)
2524
.Should()
26-
.BeSome()
27-
.Which
28-
.Should()
2925
.Be(expectedResult);
3026

3127
[Theory]

0 commit comments

Comments
 (0)