Skip to content

Commit

Permalink
Added the decimal suffix to a literal in SaleTests class.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewrenze committed Dec 22, 2016
1 parent 576cd31 commit 945f30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Domain/Sales/SaleTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void TestSetUnitPriceShouldRecomputeTotalPrice()
_sale.UnitPrice = 1.23m;

Assert.That(_sale.TotalPrice,
Is.EqualTo(1.23));
Is.EqualTo(1.23m));
}

[Test]
Expand Down

0 comments on commit 945f30f

Please sign in to comment.