Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertvanHorrik committed Dec 23, 2024
1 parent 1be408c commit c424138
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void CorrectlyIncreaseValue(double initialValue, double delta, int decima

var expectedValue = initialValue + delta;

Assert.That(target.Value, Is.EqualTo((Number)(expectedValue)));
Assert.That(target.Value, Is.EqualTo(expectedValue));
Assert.That(view.Value, Is.EqualTo(expectedViewValue));
}

Expand All @@ -68,7 +68,7 @@ public void CorrectlyDecreaseValue(double initialValue, double delta, int decima

var expectedValue = initialValue - delta;

Assert.That(target.Value, Is.EqualTo((Number)(expectedValue)));
Assert.That(target.Value, Is.EqualTo(expectedValue));
Assert.That(view.Value, Is.EqualTo(expectedViewValue));
}

Expand Down

0 comments on commit c424138

Please sign in to comment.