File tree 1 file changed +6
-0
lines changed
test/JsonApiDotNetCoreTests/UnitTests/Serialization/Response
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ public void Resources_in_deeply_nested_circular_chain_are_written_in_relationshi
40
40
// Assert
41
41
string text = JsonSerializer . Serialize ( document , new JsonSerializerOptions ( options . SerializerWriteOptions ) ) ;
42
42
43
+ // ReSharper disable StringLiteralTypo
43
44
text . Should ( ) . BeJson ( @"{
44
45
""data"": {
45
46
""type"": ""articles"",
@@ -145,6 +146,7 @@ public void Resources_in_deeply_nested_circular_chain_are_written_in_relationshi
145
146
}
146
147
]
147
148
}" ) ;
149
+ // ReSharper restore StringLiteralTypo
148
150
}
149
151
150
152
[ Fact ]
@@ -177,6 +179,7 @@ public void Resources_in_deeply_nested_circular_chains_are_written_in_relationsh
177
179
// Assert
178
180
string text = JsonSerializer . Serialize ( document , new JsonSerializerOptions ( options . SerializerWriteOptions ) ) ;
179
181
182
+ // ReSharper disable StringLiteralTypo
180
183
text . Should ( ) . BeJson ( @"{
181
184
""data"": [
182
185
{
@@ -299,6 +302,7 @@ public void Resources_in_deeply_nested_circular_chains_are_written_in_relationsh
299
302
}
300
303
]
301
304
}" ) ;
305
+ // ReSharper restore StringLiteralTypo
302
306
}
303
307
304
308
[ Fact ]
@@ -335,6 +339,7 @@ public void Resources_in_overlapping_deeply_nested_circular_chains_are_written_i
335
339
// Assert
336
340
string text = JsonSerializer . Serialize ( document , new JsonSerializerOptions ( options . SerializerWriteOptions ) ) ;
337
341
342
+ // ReSharper disable StringLiteralTypo
338
343
text . Should ( ) . BeJson ( @"{
339
344
""data"": {
340
345
""type"": ""articles"",
@@ -514,6 +519,7 @@ public void Resources_in_overlapping_deeply_nested_circular_chains_are_written_i
514
519
}
515
520
]
516
521
}" ) ;
522
+ // ReSharper restore StringLiteralTypo
517
523
}
518
524
519
525
[ Fact ]
You can’t perform that action at this time.
0 commit comments