We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent facaa9d commit 9bb7d09Copy full SHA for 9bb7d09
src/groovy/PipelineTester.groovy
@@ -624,7 +624,9 @@ class Tester {
624
625
// Do we expect output files?
626
if (testOutputPath != null) {
627
- def outputFiles = new FileNameFinder().getFileNames(testOutputPath, "{outputFileBaseName}.*")
+ def outputFiles =
628
+ new FileNameFinder().getFileNames(testOutputPath.toString(),
629
+ "${outputFileBaseName}.*")
630
if (outputFiles.size() == 0) {
631
err("Expected output file '$testOutputFile' but it wasn't there")
632
validated = false
0 commit comments