You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/MyTested.AspNetCore.Mvc.Helpers.Test/BuildersTests/ActionResultsTests/CustomTests/CustomActionResultTests.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ public void CustomActionResultShouldNotThrowExceptionWithCorrectValues()
@@ -30,13 +30,13 @@ public void CustomActionResultShouldThrowExceptionWithIncorrectActionResult()
30
30
.ShouldReturn()
31
31
.Custom("Value","CustomValue");
32
32
},
33
-
"When calling CustomActionResult action in CustomActionResultController expected response model CustomActionResult to pass the given predicate, but it failed.");
33
+
"When calling Ok action in CustomActionResultController expected result to be CustomActionResult, but instead received OkResult.");
@@ -45,7 +45,7 @@ public void CustomActionResultShouldNotThrowExceptionWithIncorrectValues()
45
45
.ShouldReturn()
46
46
.Custom("InvalidValue","CustomValue");
47
47
},
48
-
"When calling CustomActionResult action in CustomActionResultController expected response model CustomActionResult to pass the given predicate, but it failed.");
48
+
"When calling CustomActionResult action in CustomActionResultController expected the CustomActionResult to pass the given predicate, but it failed.");
0 commit comments