Skip to content

Commit

Permalink
fixed unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
YasirAlmotawa committed Nov 9, 2024
1 parent 7568186 commit e3e9212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/UnitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void Subtract_Valid()
{
Assert.AreEqual(3, Program.Subtract("5", "2"));
Assert.AreEqual(5, Program.Subtract("7", "2"));
Assert.AreEqual(12, Program.Subtract("21", "7"));
Assert.AreEqual(12, Program.Subtract("19", "7"));
}

[Test]
Expand Down Expand Up @@ -108,7 +108,7 @@ public void Power_Valid()
{
Assert.AreEqual(3, Program.Power("3", "1"));
Assert.AreEqual(25, Program.Power("5", "2"));
Assert.AreEqual(100, Program.Power("11", "2"));
Assert.AreEqual(100, Program.Power("10", "2"));
}

[Test]
Expand Down

0 comments on commit e3e9212

Please sign in to comment.