[CodeFactor] Apply fixes to commit 0606491

This commit is contained in:
codefactor-io
2026-03-12 19:37:50 +00:00
parent 060649192f
commit 8f79257155
384 changed files with 1197 additions and 1215 deletions
+2 -2
View File
@@ -359,7 +359,7 @@ public class IlrsTests
// Feed increasing prices
for (int i = 0; i < 10; i++)
{
ilrs.Update(new TValue(DateTime.UtcNow, 100.0 + i * 10));
ilrs.Update(new TValue(DateTime.UtcNow, 100.0 + (i * 10)));
}
// Integral should be well above starting value
@@ -373,7 +373,7 @@ public class IlrsTests
// Feed decreasing prices
for (int i = 0; i < 10; i++)
{
ilrs.Update(new TValue(DateTime.UtcNow, 200.0 - i * 10));
ilrs.Update(new TValue(DateTime.UtcNow, 200.0 - (i * 10)));
}
// Integral should be below starting value