fix(tests): update tolerance in SkewValidationTests for improved precision

This commit is contained in:
Miha Kralj
2025-12-25 18:46:16 -08:00
parent 4ff6dc0ad9
commit 952d6f142c
+2 -2
View File
@@ -47,8 +47,8 @@ public class SkewValidationTests : IDisposable
double expected = Statistics.Skewness(window);
double expectedPop = Statistics.PopulationSkewness(window);
Assert.Equal(expected, val.Value, ValidationHelper.DefaultTolerance);
Assert.Equal(expectedPop, popVal.Value, ValidationHelper.DefaultTolerance);
Assert.Equal(expected, val.Value, 1e-6);
Assert.Equal(expectedPop, popVal.Value, 1e-6);
}
}
}