Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thepunkoff committed Feb 15, 2023
1 parent c7e1d87 commit 6dc72cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/Unit/TestFieldTableFormattingGeneric.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void TestStandardTypes()
["string"] = "Hello",
["int"] = 1234,
["bool"] = true,
["byte[]"] = new[] {1, 2, 3, 4},
["byte[]"] = new[] { 1, 2, 3, 4 },
["float"] = 1234f,
["double"] = 1234D,
["long"] = 1234L,
Expand Down Expand Up @@ -82,7 +82,7 @@ public void TestStandardTypes()
Assert.Equal(Encoding.UTF8.GetBytes("Hello"), actualTable["string"]);
Assert.Equal(1234, actualTable["int"]);
Assert.Equal(true, actualTable["bool"]);
Assert.Equal(new[] {1, 2, 3, 4}, actualTable["byte[]"]);
Assert.Equal(new[] { 1, 2, 3, 4 }, actualTable["byte[]"]);
Assert.Equal(1234f, actualTable["float"]);
Assert.Equal(1234D, actualTable["double"]);
Assert.Equal(1234L, actualTable["long"]);
Expand Down

0 comments on commit 6dc72cf

Please sign in to comment.