Skip to content

Commit

Permalink
r Refactor code 3 to be 1*3
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyzxs committed Dec 4, 2021
1 parent 33b3744 commit 1dbc720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TddLikeYouMeanIt/FizzBuzzTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void GivenInput6ReturnsFizz()
public string Transform(int source)
{
if (source == 2 * 3) return "Fizz";
if (source == 3) return "Fizz";
if (source == 1 * 3) return "Fizz";
return source.ToString();
}
}
Expand Down

0 comments on commit 1dbc720

Please sign in to comment.