Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMichaelis committed Sep 5, 2023
1 parent 3b6b57f commit aff5b87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Chapter09.Tests/Listing09.16.OverridingToString.Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public void Override_ToString_MatchesExpectedValue()
Angle angle1 = new(120, 20, 20, "AngleName");
Angle angle2 = new(320, 10, 10, null);

string expected1 = $"AngleName: 120º 20' 20\"";
string expected2 = $"320º 10' 10\"";
string expected1 = $"AngleName: 120° 20' 20\"";
string expected2 = $"320° 10' 10\"";

string actual1 = angle1.ToString();
string actual2 = angle2.ToString();
Expand Down

0 comments on commit aff5b87

Please sign in to comment.