File tree 2 files changed +1
-14
lines changed
2 files changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,6 @@ public async Task Getting_resource_collection_translates_response()
121
121
flight . Meta [ "docs" ] . Should ( ) . Be ( flightMetaValue ) ;
122
122
123
123
flight . Attributes . Destination . Should ( ) . Be ( flightDestination ) ;
124
- flight . Attributes . FlightNumber . Should ( ) . Be ( null ) ;
125
124
flight . Attributes . ServicesOnBoard . Should ( ) . HaveCount ( 3 ) ;
126
125
flight . Attributes . ServicesOnBoard . ElementAt ( 0 ) . Should ( ) . Be ( fightServiceOnBoard ) ;
127
126
flight . Attributes . ServicesOnBoard . ElementAt ( 1 ) . Should ( ) . Be ( string . Empty ) ;
@@ -187,7 +186,6 @@ public async Task Getting_resource_translates_response()
187
186
document . Data . Relationships . Should ( ) . BeNull ( ) ;
188
187
document . Data . Attributes . DepartsAt . Should ( ) . Be ( DateTimeOffset . Parse ( departsAtInZuluTime ) ) ;
189
188
document . Data . Attributes . ArrivesAt . Should ( ) . Be ( DateTimeOffset . Parse ( arrivesAtWithUtcOffset ) ) ;
190
- document . Data . Attributes . FlightNumber . Should ( ) . BeNull ( ) ;
191
189
document . Data . Attributes . ServicesOnBoard . Should ( ) . BeNull ( ) ;
192
190
document . Data . Attributes . Destination . Should ( ) . BeNull ( ) ;
193
191
document . Data . Attributes . OperatedBy . Should ( ) . Be ( default ( Airline ) ) ;
Original file line number Diff line number Diff line change 1
-
2
1
{
3
2
"openapi" : " 3.0.1" ,
4
3
"info" : {
2446
2445
"maxLength" : 40 ,
2447
2446
"type" : " string"
2448
2447
},
2449
- "flight-number" : {
2450
- "maxLength" : 8 ,
2451
- "type" : " string" ,
2452
- "nullable" : true
2453
- },
2454
2448
"operated-by" : {
2455
2449
"$ref" : " #/components/schemas/airline"
2456
2450
}
2464
2458
"maxLength" : 40 ,
2465
2459
"type" : " string"
2466
2460
},
2467
- "flight-number" : {
2468
- "maxLength" : 8 ,
2469
- "type" : " string" ,
2470
- "nullable" : true
2471
- },
2472
2461
"departs-at" : {
2473
2462
"type" : " string" ,
2474
2463
"format" : " date-time" ,
3016
3005
}
3017
3006
}
3018
3007
}
3019
- }
3008
+ }
You can’t perform that action at this time.
0 commit comments