Skip to content

Commit

Permalink
Fix bad test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
bdukes authored Nov 7, 2024
1 parent 30c7f2b commit 395ee6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void FormatVersion_WhenFourDigitVersionFormattedWithThreeParts_DoesNotDis
[Test]
public void FormatVersion_WhenTwoDigitVersion_DisplaysThreePartsWithLeadingZeroes_InABrokenWay()
{
Assert.That(Globals.FormatVersion(new Version("4.8")), Is.EqualTo("04.00.-01"));
Assert.That(Globals.FormatVersion(new Version("4.8")), Is.EqualTo("04.08.-01"));
}

[Test]
Expand Down

0 comments on commit 395ee6b

Please sign in to comment.