Skip to content

Commit

Permalink
r Rename method to Transform
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyzxs committed Nov 25, 2021
1 parent fefc0dc commit 00e39b9
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 @@ -14,13 +14,13 @@ public void TestMethod1()
//ARRANGE

//ACT
string actual = FizzBuzz(1);
string actual = Transform(1);

//ASSERT
actual.Should().Be("1");
}

public string FizzBuzz(int i)
public string Transform(int i)
{
return "1";
}
Expand Down

0 comments on commit 00e39b9

Please sign in to comment.