We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16133ac commit 9e3a56eCopy full SHA for 9e3a56e
src/FluentAssertions.Mvc3/ViewResultBaseAssertions.cs
@@ -105,11 +105,11 @@ public TModel ModelAs<TModel>()
105
106
public ViewResultBaseAssertions<T> WithDefaultViewName()
107
{
108
- WithDefaultView(string.Empty, null);
+ WithDefaultViewName(string.Empty, null);
109
return this;
110
}
111
112
- public ViewResultBaseAssertions<T> WithDefaultView(string reason, params object[] reasonArgs)
+ public ViewResultBaseAssertions<T> WithDefaultViewName(string reason, params object[] reasonArgs)
113
114
string viewName = (Subject as ViewResultBase).ViewName;
115
0 commit comments