File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
test/Microsoft.OpenApi.Tests/Writers Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1- // Copyright (c) Microsoft Corporation. All rights reserved.
1+ // Copyright (c) Microsoft Corporation. All rights reserved.
22// Licensed under the MIT license.
33
44using System ;
1010using System . Text ;
1111using System . Text . Encodings . Web ;
1212using System . Text . Json ;
13- using System . Text . Json . Nodes ;
1413using System . Text . Json . Serialization ;
1514using System . Threading . Tasks ;
16- using Microsoft . OpenApi . Any ;
1715using Microsoft . OpenApi . Models ;
1816using Microsoft . OpenApi . Writers ;
1917using Xunit ;
@@ -328,7 +326,7 @@ public void OpenApiJsonWriterOutputsValidJsonValueWhenSchemaHasNanOrInfinityValu
328326 var jsonString = schemaBuilder . ToString ( ) ;
329327
330328 // Assert
331- var exception = Record . Exception ( ( ) => System . Text . Json . JsonSerializer . Deserialize < Dictionary < string , object > > ( jsonString ) ) ;
329+ var exception = Record . Exception ( ( ) => JsonSerializer . Deserialize < Dictionary < string , object > > ( jsonString ) ) ;
332330 Assert . Null ( exception ) ;
333331 }
334332 }
You can’t perform that action at this time.
0 commit comments