From c498023b881e112469ee32fd4c504096ded7002b Mon Sep 17 00:00:00 2001
From: Michael Krisper <michael.krisper@tugraz.at>
Date: Tue, 9 Nov 2021 18:21:49 +0100
Subject: [PATCH] corrected two missing errors (due to sync)

---
 .../VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs     | 2 +-
 VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsHEV.cs        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs b/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs
index c37e215d09..b964fb5da2 100644
--- a/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs
+++ b/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsConventional.cs
@@ -1400,7 +1400,7 @@ namespace TUGraz.VectoCore.Tests.Integration.ADAS
 		private void TestPCC(string testname,
 			params (double start, double end, PCCStates pcc, DrivingAction action)[] data)
 		{
-			var jobName = testname.Split('_').Slice(0, -2).JoinString("_");
+			var jobName = testname.Split('_').Slice(0, -2).Join("_");
 			var cycleName = testname.Split('_').Reverse().Skip(1).First();
 			DoTestPCC(jobName, cycleName, data);
 		}
diff --git a/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsHEV.cs b/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsHEV.cs
index 3ba1c7fd3e..f6d357b10b 100644
--- a/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsHEV.cs
+++ b/VectoCore/VectoCoreTest/Integration/ADAS/ADASTestsHEV.cs
@@ -1839,7 +1839,7 @@ namespace TUGraz.VectoCore.Tests.Integration.ADAS
 		private void TestPCC(string testname,
 			params (double start, double end, PCCStates pcc, DrivingAction action)[] data)
 		{
-			var jobName = testname.Split('_').Slice(0, -2).JoinString("_");
+			var jobName = testname.Split('_').Slice(0, -2).Join("_");
 			var cycleName = testname.Split('_').Reverse().Skip(1).First();
 			DoTestPCC(jobName, cycleName, data);
 		}
-- 
GitLab