From b7b9e04f3ba66327da3f22e100212d77868d60ce Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Fri, 22 Nov 2024 21:16:10 +0100 Subject: [PATCH] fixed error in Jenkinsfile --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c7fcc98..3024ba6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,12 +57,10 @@ pipeline { post { always { junit(testResults: 'testout/junit/**/*.xml', - keepLongStdio: true, - uniqueName: 'Unit Tests') + keepLongStdio: true) junit(testResults: 'testout/integrationtest/**/*.xml', - keepLongStdio: true, - uniqueName: 'Integration tests') + keepLongStdio: true) } } }