Skip to content

Commit

Permalink
f Add hard coded 4 to pass test
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyzxs committed Dec 4, 2021
1 parent 6992f72 commit 934df9e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions TddLikeYouMeanIt/FizzBuzzTests.cs
Expand Up @@ -76,6 +76,7 @@ public void GivenInput12ReturnsFizz()

public string Transform(int source)
{
if (source == 4 * 3) return "Fizz";
if (source == 2 * 3) return "Fizz";
if (source == 1 * 3) return "Fizz";
return source.ToString();
Expand Down

0 comments on commit 934df9e

Please sign in to comment.