[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
@@ -125,7 +125,7 @@ public class VossTests
// Feed enough bars past warmup (Count > 5) so Filt is not clamped to 0
for (int i = 0; i < 10; i++)
{
ind.Update(new TValue(DateTime.UtcNow, 100 + i * 2), isNew: true);
ind.Update(new TValue(DateTime.UtcNow, 100 + (i * 2)), isNew: true);
}
double val1 = ind.Last.Value;
@@ -141,7 +141,7 @@ public class VossTests
// Feed enough bars past warmup (Count > 5) so Filt is not clamped to 0
for (int i = 0; i < 10; i++)
{
ind.Update(new TValue(DateTime.UtcNow, 100 + i * 3), isNew: true);
ind.Update(new TValue(DateTime.UtcNow, 100 + (i * 3)), isNew: true);
}
double val1 = ind.Last.Value;