File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public async Task Retrieved_document_matches_expected_document()
23
23
// Arrange
24
24
string embeddedResourceName = $ "{ nameof ( OpenApiTests ) } .swagger.json";
25
25
string expectedDocument = await LoadEmbeddedResourceAsync ( embeddedResourceName ) ;
26
- string requestUrl = "swagger/v1/swagger.json" ;
26
+ const string requestUrl = "swagger/v1/swagger.json" ;
27
27
28
28
// Act
29
29
string actualDocument = await GetAsync ( requestUrl ) ;
Original file line number Diff line number Diff line change 2
2
"openapi" : " 3.0.1" ,
3
3
"info" : {
4
4
"title" : " OpenApiTests" ,
5
- "version" : " 1"
5
+ "version" : " 1.0 "
6
6
},
7
7
"paths" : {
8
8
"/airplanes" : {
366
366
"requestBody" : {
367
367
"content" : {
368
368
"application/json" : {
369
- "schema" : {}
369
+ "schema" : { }
370
370
},
371
371
"text/json" : {
372
- "schema" : {}
372
+ "schema" : { }
373
373
},
374
374
"application/*+json" : {
375
- "schema" : {}
375
+ "schema" : { }
376
376
}
377
377
}
378
378
},
804
804
"requestBody" : {
805
805
"content" : {
806
806
"application/json" : {
807
- "schema" : {}
807
+ "schema" : { }
808
808
},
809
809
"text/json" : {
810
- "schema" : {}
810
+ "schema" : { }
811
811
},
812
812
"application/*+json" : {
813
- "schema" : {}
813
+ "schema" : { }
814
814
}
815
815
}
816
816
},
You can’t perform that action at this time.
0 commit comments