Skip to content
Snippets Groups Projects
Commit 80020764 authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed forgot to output allTest id instead of whole object...

parent 0b6c1480
Branches master
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ namespace ClientServer.Helpers
/// </summary>
public static class Constants
{
public static string VersionString = "2.6.4";
public static string VersionString = "2.6.5";
/// <summary>
/// this is only set once at program.cs!!
......
......@@ -45,7 +45,7 @@ namespace ClientServer.Helpers
public static string GetTraceStringPartFromTests(List<AllTest> tests)
{
return $"tests_{tests.FirstOrDefault()}_{tests.Count}";
return $"tests_{tests.FirstOrDefault()?.Id}_{tests.Count}";
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment