Skip to content

Commit

Permalink
t Rename input variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyzxs committed Dec 3, 2021
1 parent 7e2d7da commit e1a8de8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TddLikeYouMeanIt/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public void GivenInput3ReturnsFizz()
{
//ARRANGE
string expected = "Fizz";
int valueToTransform = 3;
int sourceInput = 3;

//ACT
string actual = Transform(valueToTransform);
string actual = Transform(sourceInput);

//ASSERT
actual.Should().Be(expected);
Expand Down

0 comments on commit e1a8de8

Please sign in to comment.