2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
using FluentAssertions . Execution ;
2
- using FluentAssertions . Primitives ;
3
2
using Microsoft . AspNetCore . Mvc ;
4
3
using System . Diagnostics ;
5
4
@@ -9,7 +8,7 @@ namespace FluentAssertions.AspNetCore.Mvc
9
8
/// Contains a number of methods to assert that a <see cref="BadRequestObjectResult"/> is in the expected state.
10
9
/// </summary>
11
10
[ DebuggerNonUserCode ]
12
- public class BadRequestObjectResultAssertions : ObjectAssertions
11
+ public class BadRequestObjectResultAssertions : ObjectResultAssertionsBase < BadRequestObjectResult , BadRequestObjectResultAssertions >
13
12
{
14
13
#region Public Constructors
15
14
/// <summary>
Original file line number Diff line number Diff line change 1
1
using FluentAssertions . Execution ;
2
- using FluentAssertions . Primitives ;
3
2
using Microsoft . AspNetCore . Mvc ;
4
3
using System . Diagnostics ;
5
4
@@ -9,7 +8,7 @@ namespace FluentAssertions.AspNetCore.Mvc
9
8
/// Contains a number of methods to assert that a <see cref="ConflictObjectResult"/> is in the expected state.
10
9
/// </summary>
11
10
[ DebuggerNonUserCode ]
12
- public class ConflictObjectResultAssertions : ObjectAssertions
11
+ public class ConflictObjectResultAssertions : ObjectResultAssertionsBase < ConflictObjectResult , ConflictObjectResultAssertions >
13
12
{
14
13
#region Public Constructors
15
14
/// <summary>
0 commit comments