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 3
3
"isRoot" : true ,
4
4
"tools" : {
5
5
"jetbrains.resharper.globaltools" : {
6
- "version" : " 2024.3.6 " ,
6
+ "version" : " 2025.1.4 " ,
7
7
"commands" : [
8
8
" jb"
9
9
],
38
38
"rollForward" : false
39
39
}
40
40
}
41
- }
41
+ }
Original file line number Diff line number Diff line change @@ -107,15 +107,15 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
107
107
108
108
response . Included . Should ( ) . HaveCount ( 2 ) ;
109
109
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 =>
112
112
{
113
113
include . Attributes . Should ( ) . NotBeNull ( ) ;
114
114
include . Attributes . BytesTransmitted . Should ( ) . Be ( ( long ? ) existingVideoStream . BytesTransmitted ) ;
115
115
} ) ;
116
116
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 =>
119
119
{
120
120
include . Attributes . Should ( ) . NotBeNull ( ) ;
121
121
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 =>
103
103
104
104
response . Included . Should ( ) . HaveCount ( 2 ) ;
105
105
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 =>
108
108
{
109
109
include . Attributes . Should ( ) . NotBeNull ( ) ;
110
110
include . Attributes . BytesTransmitted . Should ( ) . Be ( ( long ? ) existingVideoStream . BytesTransmitted ) ;
111
111
} ) ;
112
112
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 =>
115
115
{
116
116
include . Attributes . Should ( ) . NotBeNull ( ) ;
117
117
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)
46
46
{
47
47
verbElement . Should ( ) . ContainPath ( "parameters" ) . With ( parametersElement =>
48
48
{
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 =>
51
51
{
52
52
parameterElement . Should ( ) . HaveProperty ( "name" , "query" ) ;
53
53
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ public sealed class Item : Identifiable<long>
225
225
{
226
226
private const JsonApiEndpoints NoRelationshipEndpoints = JsonApiEndpoints.GetCollection |
227
227
JsonApiEndpoints.GetSingle | JsonApiEndpoints.Post | JsonApiEndpoints.Patch | JsonApiEndpoints.Delete;
228
-
228
+
229
229
[Attr]
230
230
public int Value { get; set; }
231
231
}
You can’t perform that action at this time.
0 commit comments