Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,13 @@
assertTrue(Pattern.compile("- currentWorkUnit:.*" + workflowRun.getFullDisplayName() + ".*")
.matcher(scanner.nextLine())
.find());
assertTrue(Pattern.compile("- executable:.*" + workflowRun.getFullDisplayName() + ".*")
.matcher(scanner.nextLine())
.find());
assertTrue(
executorMd,
Pattern.compile("- executable:.*(" + workflowRun.getExternalizableId()
+ /* TODO delete after https://github.com/jenkinsci/workflow-job-plugin/pull/499 */ "|"

Check warning on line 130 in src/test/java/com/cloudbees/jenkins/support/impl/NodeExecutorsTest.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

+ workflowRun.getFullDisplayName() + ").*")
.matcher(scanner.nextLine())
.find());
assertTrue(scanner.nextLine().contains("- elapsedTime: "));
assertFalse(scanner.hasNextLine());
scanner.close();
Expand Down
Loading