From d4bd52f14b2d52f60d13e825dd098943523d8d5d Mon Sep 17 00:00:00 2001 From: Sven Merk Date: Mon, 16 Dec 2019 09:55:07 +0100 Subject: [PATCH] Fix test --- test/groovy/com/sap/piper/mta/MtaMultiplexerTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/groovy/com/sap/piper/mta/MtaMultiplexerTest.groovy b/test/groovy/com/sap/piper/mta/MtaMultiplexerTest.groovy index bac7483af..e36d2117e 100644 --- a/test/groovy/com/sap/piper/mta/MtaMultiplexerTest.groovy +++ b/test/groovy/com/sap/piper/mta/MtaMultiplexerTest.groovy @@ -67,7 +67,7 @@ class MtaMultiplexerTest extends BasePiperTest { // asserts assertThat(result.size(), is(2)) assertThat(result, hasKey('TestJobs - some-other-service')) - assertThat(loggingRule.log, containsString('Found 2 maven descriptor files!')) + assertThat(loggingRule.log, containsString('Found 2 maven descriptor files: [some-service\\pom.xml, some-other-service\\pom.xml]')) assertThat(optionsList.get(0), hasEntry('myParameters', 'value')) assertThat(optionsList.get(0), hasEntry('scanType', 'maven')) assertThat(optionsList.get(0), hasEntry('buildDescriptorFile', "some-service${File.separator}pom.xml".toString()))