File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed
OpenApiKiotaEndToEndTests/RestrictedControllers
OpenApiNSwagEndToEndTests/RestrictedControllers
OpenApiTests/QueryStrings Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 33 "isRoot" : true ,
44 "tools" : {
55 "jetbrains.resharper.globaltools" : {
6- "version" : " 2024.3.6 " ,
6+ "version" : " 2025.1.4 " ,
77 "commands" : [
88 " jb"
99 ],
3838 "rollForward" : false
3939 }
4040 }
41- }
41+ }
Original file line number Diff line number Diff line change @@ -107,15 +107,15 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
107107
108108 response . Included . Should ( ) . HaveCount ( 2 ) ;
109109
110- response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingVideoStream . StringId ) . Subject . With (
111- include =>
110+ response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingVideoStream . StringId ) . Subject
111+ . With ( include =>
112112 {
113113 include . Attributes . Should ( ) . NotBeNull ( ) ;
114114 include . Attributes . BytesTransmitted . Should ( ) . Be ( ( long ? ) existingVideoStream . BytesTransmitted ) ;
115115 } ) ;
116116
117- response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingAudioStream . StringId ) . Subject . With (
118- include =>
117+ response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingAudioStream . StringId ) . Subject
118+ . With ( include =>
119119 {
120120 include . Attributes . Should ( ) . NotBeNull ( ) ;
121121 include . Attributes . BytesTransmitted . Should ( ) . Be ( ( long ? ) existingAudioStream . BytesTransmitted ) ;
Original file line number Diff line number Diff line change @@ -103,15 +103,15 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
103103
104104 response . Included . Should ( ) . HaveCount ( 2 ) ;
105105
106- response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingVideoStream . StringId ) . Subject . With (
107- include =>
106+ response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingVideoStream . StringId ) . Subject
107+ . With ( include =>
108108 {
109109 include . Attributes . Should ( ) . NotBeNull ( ) ;
110110 include . Attributes . BytesTransmitted . Should ( ) . Be ( ( long ? ) existingVideoStream . BytesTransmitted ) ;
111111 } ) ;
112112
113- response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingAudioStream . StringId ) . Subject . With (
114- include =>
113+ response . Included . OfType < DataInDataStreamResponse > ( ) . Should ( ) . ContainSingle ( include => include . Id == existingAudioStream . StringId ) . Subject
114+ . With ( include =>
115115 {
116116 include . Attributes . Should ( ) . NotBeNull ( ) ;
117117 include . Attributes . BytesTransmitted . Should ( ) . Be ( ( long ? ) existingAudioStream . BytesTransmitted ) ;
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ public async Task Endpoints_have_query_string_parameter(string endpointPath)
4646 {
4747 verbElement . Should ( ) . ContainPath ( "parameters" ) . With ( parametersElement =>
4848 {
49- parametersElement . EnumerateArray ( ) . Should ( ) . ContainSingle ( element => element . GetProperty ( "in" ) . ValueEquals ( "query" ) ) . Subject . With (
50- parameterElement =>
49+ parametersElement . EnumerateArray ( ) . Should ( ) . ContainSingle ( element => element . GetProperty ( "in" ) . ValueEquals ( "query" ) ) . Subject
50+ . With ( parameterElement =>
5151 {
5252 parameterElement . Should ( ) . HaveProperty ( "name" , "query" ) ;
5353
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ public sealed class Item : Identifiable<long>
225225 {
226226 private const JsonApiEndpoints NoRelationshipEndpoints = JsonApiEndpoints.GetCollection |
227227 JsonApiEndpoints.GetSingle | JsonApiEndpoints.Post | JsonApiEndpoints.Patch | JsonApiEndpoints.Delete;
228-
228+
229229 [Attr]
230230 public int Value { get; set; }
231231 }
You can’t perform that action at this time.
0 commit comments