From cfc33b37da9a2d285de64053679327ad2a159105 Mon Sep 17 00:00:00 2001 From: Samuel Cattini-Schultz Date: Tue, 12 Nov 2024 22:23:38 +1100 Subject: [PATCH] Update taiko tests --- Difficalcy.Taiko.Tests/TaikoCalculatorServiceTest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Difficalcy.Taiko.Tests/TaikoCalculatorServiceTest.cs b/Difficalcy.Taiko.Tests/TaikoCalculatorServiceTest.cs index 03e7cfa..9de89d0 100644 --- a/Difficalcy.Taiko.Tests/TaikoCalculatorServiceTest.cs +++ b/Difficalcy.Taiko.Tests/TaikoCalculatorServiceTest.cs @@ -21,8 +21,8 @@ protected override CalculatorService< ); [Theory] - [InlineData(3.092021259435121d, 137.80325540434842d, "diffcalc-test", new string[] { })] - [InlineData(4.0789820318081444d, 248.8310568362074d, "diffcalc-test", new string[] { "DT" })] + [InlineData(3.092021259435121d, 135.79672372953866, "diffcalc-test", new string[] { })] + [InlineData(4.0789820318081444d, 248.7184459889834, "diffcalc-test", new string[] { "DT" })] public void Test( double expectedDifficultyTotal, double expectedPerformanceTotal, @@ -58,6 +58,6 @@ public void TestAllParameters() Misses = 5, Oks = 3, }; - TestGetCalculationReturnsCorrectValues(4.922364692298034, 359.95282202016443, score); + TestGetCalculationReturnsCorrectValues(4.922364692298034, 359.9526882598762d, score); } }