Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmada committed May 16, 2020
1 parent 1f1d247 commit 2251f79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void Range_ToArray_With_ValidData_Must_Succeed(int start, int count)

// Assert
_ = result.Must()
.BeOfType<int[]>()
.BeArrayOf<int>()
.BeEnumerableOf<int>()
.BeEqualTo(expected);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,7 @@ public void Repeat_ToArray_With_ValidData_Must_Succeed(int value, int count)

// Assert
_ = result.Must()
.BeOfType<int[]>()
.BeEnumerableOf<int>()
.BeArrayOf<int>()
.BeEqualTo(expected);
}

Expand Down

0 comments on commit 2251f79

Please sign in to comment.