From 1f72d4f37ddd1bc498faa0733b38a4f0b9afd126 Mon Sep 17 00:00:00 2001 From: benbierens Date: Fri, 26 Jul 2024 10:14:54 +0200 Subject: [PATCH] Fixes compile of continuous tests --- Tests/DistTestCore/Logs/StatusLog.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tests/DistTestCore/Logs/StatusLog.cs b/Tests/DistTestCore/Logs/StatusLog.cs index 2bf15adb..8b45a529 100644 --- a/Tests/DistTestCore/Logs/StatusLog.cs +++ b/Tests/DistTestCore/Logs/StatusLog.cs @@ -25,6 +25,11 @@ namespace DistTestCore.Logs ConcludeTest(resultStatus.Status, testDuration.TotalSeconds.ToString(CultureInfo.InvariantCulture), data); } + public void ConcludeTest(string result, TimeSpan testDuration, Dictionary data) + { + ConcludeTest(result, testDuration.TotalSeconds.ToString(CultureInfo.InvariantCulture), data); + } + public void ConcludeTest(string resultStatus, string testDuration, Dictionary data) { data.Add("timestamp", DateTime.UtcNow.ToString("o"));