Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Apr 10, 2024
1 parent 4110470 commit ab3f627
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ namespace System.Linq.Dynamic.Core.NewtonsoftJson.Tests;
public class NewtonsoftJsonTests
{
private const string ExampleJson = @"[
{
""Name"": ""John"",
""Age"": 30
},
{
""Name"": ""Doe"",
""Age"": 40
}
]";
{
""Name"": ""John"",
""Age"": 30
},
{
""Name"": ""Doe"",
""Age"": 40
}
]";
private readonly JArray _source = JArray.Parse(ExampleJson);

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ namespace System.Linq.Dynamic.Core.SystemTextJson.Tests;
public class SystemTextJsonTests
{
private const string ExampleJson = @"[
{
""Name"": ""John"",
""Age"": 30
},
{
""Name"": ""Doe"",
""Age"": 40
}
]";
{
""Name"": ""John"",
""Age"": 30
},
{
""Name"": ""Doe"",
""Age"": 40
}
]";
private readonly JsonDocument _source = JsonDocument.Parse(ExampleJson);

[Fact]
Expand Down

0 comments on commit ab3f627

Please sign in to comment.