Skip to content

Commit

Permalink
Fix Repeat() test
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmada committed Sep 11, 2021
1 parent 911d7f8 commit f4f9f2f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,7 @@ public async Task Repeat_ToList_With_ValidData_Must_Succeed(int value, int count

// Assert
_ = result.Must()
.BeOfType<List<int>>()
.BeEnumerableOf<int>()
.BeEqualTo(expected);
.EvaluateTrue(list => list.SequenceEqual(expected));
}
}
}

0 comments on commit f4f9f2f

Please sign in to comment.