Skip to content

Commit

Permalink
removed TestingSequence for specific case
Browse files Browse the repository at this point in the history
  • Loading branch information
julienasp committed May 28, 2023
1 parent 02e18f9 commit 0c35eb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/SuperLinq.Test/FallbackIfEmptyTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public void FallbackIfEmptyWithEmptySequence()
[Fact]
public void FallbackIfEmptyWithEmptyListSequence()
{
using var source = Enumerable.Empty<int>().ToList().AsTestingSequence(maxEnumerations: 2);
var source = Enumerable.Empty<int>().ToList();
source.FallbackIfEmpty(12).AssertSequenceEqual(12);
source.FallbackIfEmpty(12, 23).AssertSequenceEqual(12, 23);
}
Expand Down

0 comments on commit 0c35eb5

Please sign in to comment.