Skip to content

Commit

Permalink
Fix to test
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed May 24, 2023
1 parent 16412e6 commit fb896e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ public void GHChangeFailureRateLiveControllerIntegrationTest()
Assert.IsTrue(model.ChangeFailureRateMetric >= -1f);
Assert.AreEqual(false, string.IsNullOrEmpty(model.ChangeFailureRateMetricDescription));
Assert.AreEqual(numberOfDays, model.NumberOfDays);
Assert.IsTrue(model.MaxNumberOfItems > 0);
Assert.IsTrue(model.TotalItems > 0);
Assert.IsTrue(model.MaxNumberOfItems >= 0);
Assert.IsTrue(model.TotalItems >= 0);

}

Expand Down

0 comments on commit fb896e4

Please sign in to comment.