Skip to content

Commit

Permalink
t Rename sourceInput to multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyzxs committed Dec 5, 2021
1 parent 2db0cbe commit 342c964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TddLikeYouMeanIt/FizzBuzzTests.cs
Expand Up @@ -62,8 +62,8 @@ public void GivenMultipleOf5ReturnsFizz()
List<int> regressionValues = new() { 1, 2, 4 };

int randomIndex = rand.Next(0, regressionValues.Count);
int elementAt = regressionValues.ElementAt(randomIndex);
int sourceInput = elementAt * multiplicand;
int multiplier = regressionValues.ElementAt(randomIndex);
int sourceInput = multiplier * multiplicand;

//ACT
string actual = Transform(sourceInput);
Expand Down

0 comments on commit 342c964

Please sign in to comment.