Skip to content

Commit

Permalink
Update SerializerTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Dec 10, 2023
1 parent 8ea530a commit a84ec09
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/SqlServer.Native.Tests/SerializerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,15 @@ public Task Dictionary()
public Task List()
{
var serialized = Serializer.SerializeList(
new()
{
"value",
@"a\b",
@"a\\b",
"a\"b",
"a/b",
"a//b",
@"a\/b"
});
[
"value",
@"a\b",
@"a\\b",
"a\"b",
"a/b",
"a//b",
@"a\/b"
]);
return Verify(Serializer.DeSerializeList(serialized));
}
}

0 comments on commit a84ec09

Please sign in to comment.