@@ -99,7 +99,7 @@ public async Task Getting_resource_collection_translates_response()
99
99
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
100
100
101
101
// Act
102
- FlightCollectionResponseDocument document = await apiClient . GetFlightCollectionAsync ( null ) ;
102
+ FlightCollectionResponseDocument document = await apiClient . GetFlightCollectionAsync ( ) ;
103
103
104
104
// Assert
105
105
document . Jsonapi . Should ( ) . BeNull ( ) ;
@@ -180,7 +180,7 @@ public async Task Getting_resource_translates_response()
180
180
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
181
181
182
182
// Act
183
- FlightPrimaryResponseDocument document = await apiClient . GetFlightAsync ( flightId , null ) ;
183
+ FlightPrimaryResponseDocument document = await apiClient . GetFlightAsync ( flightId ) ;
184
184
185
185
// Assert
186
186
document . Jsonapi . Should ( ) . BeNull ( ) ;
@@ -218,7 +218,7 @@ public async Task Getting_unknown_resource_translates_error_response()
218
218
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
219
219
220
220
// Act
221
- Func < Task < FlightPrimaryResponseDocument > > action = ( ) => apiClient . GetFlightAsync ( flightId , null ) ;
221
+ Func < Task < FlightPrimaryResponseDocument > > action = ( ) => apiClient . GetFlightAsync ( flightId ) ;
222
222
223
223
// Assert
224
224
ApiException < ErrorResponseDocument > exception = ( await action . Should ( ) . ThrowExactlyAsync < ApiException < ErrorResponseDocument > > ( ) ) . Which ;
@@ -447,7 +447,7 @@ public async Task Getting_secondary_resource_translates_response()
447
447
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
448
448
449
449
// Act
450
- FlightAttendantSecondaryResponseDocument document = await apiClient . GetFlightPurserAsync ( flightId , null ) ;
450
+ FlightAttendantSecondaryResponseDocument document = await apiClient . GetFlightPurserAsync ( flightId ) ;
451
451
452
452
// Assert
453
453
document . Data . Should ( ) . NotBeNull ( ) ;
@@ -479,7 +479,7 @@ public async Task Getting_nullable_secondary_resource_translates_response()
479
479
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
480
480
481
481
// Act
482
- NullableFlightAttendantSecondaryResponseDocument document = await apiClient . GetFlightBackupPurserAsync ( flightId , null ) ;
482
+ NullableFlightAttendantSecondaryResponseDocument document = await apiClient . GetFlightBackupPurserAsync ( flightId ) ;
483
483
484
484
// Assert
485
485
document . Data . Should ( ) . BeNull ( ) ;
@@ -505,7 +505,7 @@ public async Task Getting_secondary_resources_translates_response()
505
505
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
506
506
507
507
// Act
508
- FlightAttendantCollectionResponseDocument document = await apiClient . GetFlightCabinCrewMembersAsync ( flightId , null ) ;
508
+ FlightAttendantCollectionResponseDocument document = await apiClient . GetFlightCabinCrewMembersAsync ( flightId ) ;
509
509
510
510
// Assert
511
511
document . Data . Should ( ) . BeEmpty ( ) ;
@@ -531,7 +531,7 @@ public async Task Getting_nullable_ToOne_relationship_translates_response()
531
531
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
532
532
533
533
// Act
534
- NullableFlightAttendantIdentifierResponseDocument document = await apiClient . GetFlightBackupPurserRelationshipAsync ( flightId , null ) ;
534
+ NullableFlightAttendantIdentifierResponseDocument document = await apiClient . GetFlightBackupPurserRelationshipAsync ( flightId ) ;
535
535
536
536
// Assert
537
537
document . Data . Should ( ) . BeNull ( ) ;
@@ -561,7 +561,7 @@ public async Task Getting_ToOne_relationship_translates_response()
561
561
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
562
562
563
563
// Act
564
- FlightAttendantIdentifierResponseDocument document = await apiClient . GetFlightPurserRelationshipAsync ( flightId , null ) ;
564
+ FlightAttendantIdentifierResponseDocument document = await apiClient . GetFlightPurserRelationshipAsync ( flightId ) ;
565
565
566
566
// Assert
567
567
document . Data . Should ( ) . NotBeNull ( ) ;
@@ -617,7 +617,7 @@ public async Task Getting_ToMany_relationship_translates_response()
617
617
IOpenApiClient apiClient = new OpenApiClient ( wrapper . HttpClient ) ;
618
618
619
619
// Act
620
- FlightAttendantIdentifierCollectionResponseDocument document = await apiClient . GetFlightCabinCrewMembersRelationshipAsync ( flightId , null ) ;
620
+ FlightAttendantIdentifierCollectionResponseDocument document = await apiClient . GetFlightCabinCrewMembersRelationshipAsync ( flightId ) ;
621
621
622
622
// Assert
623
623
document . Data . Should ( ) . HaveCount ( 2 ) ;
0 commit comments