File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Http/Http.Extensions/test Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -185,10 +185,10 @@ public void BuildRequestDelegateThrowsArgumentNullExceptions()
185
185
186
186
var serviceProvider = new EmptyServiceProvider ( ) ;
187
187
188
- var exNullAction = Assert . Throws < ArgumentNullException > ( ( ) => RequestDelegateFactory . Create ( action : null ! ) ) ;
188
+ var exNullAction = Assert . Throws < ArgumentNullException > ( ( ) => RequestDelegateFactory . Create ( handler : null ! ) ) ;
189
189
var exNullMethodInfo1 = Assert . Throws < ArgumentNullException > ( ( ) => RequestDelegateFactory . Create ( methodInfo : null ! ) ) ;
190
190
191
- Assert . Equal ( "action " , exNullAction . ParamName ) ;
191
+ Assert . Equal ( "handler " , exNullAction . ParamName ) ;
192
192
Assert . Equal ( "methodInfo" , exNullMethodInfo1 . ParamName ) ;
193
193
}
194
194
You can’t perform that action at this time.
0 commit comments