Skip to content

Commit

Permalink
t Expand 15s in tests to n * (3*5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyzxs committed Dec 6, 2021
1 parent 5d26e9d commit 6a0146b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TddLikeYouMeanIt/FizzBuzzTests.cs
Expand Up @@ -74,7 +74,7 @@ public void GivenMultipleOf5ReturnsFizz()
public void Given15ReturnsFizzBuzz()
{
//ARRANGE
const int sourceInput = 15;
const int sourceInput = 1 * (3 * 5);
const string expected = "FizzBuzz";

//ACT
Expand All @@ -88,7 +88,7 @@ public void Given15ReturnsFizzBuzz()
public void Given305ReturnsFizzBuzz()
{
//ARRANGE
const int sourceInput = 30;
const int sourceInput = 2 * (3 * 5);
const string expected = "FizzBuzz";

//ACT
Expand Down

0 comments on commit 6a0146b

Please sign in to comment.