Skip to content

Commit

Permalink
CODE RUB: Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdutoit committed Feb 1, 2024
1 parent 41f9d16 commit 45ca33e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ public partial class SerializationAbstractionProviderTests
public async Task ShouldSerializeAsync()
{
// given
dynamic dynamicPerson = new
dynamic somePerson = new
{
Name = GetRandomString(),
Surname = GetRandomString(),
Age = GetRandomNumber()
};

dynamic inputPerson = dynamicPerson;
dynamic inputPerson = somePerson;
string randomString = GetRandomString();
string outputString = GetRandomString();
string expectedString = outputString;
Expand Down

0 comments on commit 45ca33e

Please sign in to comment.