This commit is contained in:
Michael Schimmel
2025-06-11 13:33:46 +02:00
parent d282d2c40d
commit 7f6672db24
6 changed files with 404 additions and 5 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ begin
for n := 0 to High(ExpectedData) div 1000 do
begin
i := n * 1000;
Assert.AreEqual(ExpectedData[i].TimeStamp, Dst[i].Time, 'Timestamp mismatch');
Assert.AreEqual(ExpectedData[i].Time, Dst[i].Time, 'Timestamp mismatch');
Assert.AreEqual(ExpectedData[i].Data.Ask, Dst[i].Data.Ask, 'Ask price mismatch');
Assert.AreEqual(ExpectedData[i].Data.Bid, Dst[i].Data.Bid, 'Bid price mismatch');
end;