Skip to content

Commit

Permalink
update ShellStepTest to support workflow-support 827.v7ef666c4d65c (#250
Browse files Browse the repository at this point in the history
)
  • Loading branch information
car-roll authored Jul 19, 2022
1 parent 73a9a17 commit c05073b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ private static class Decorator extends LauncherDecorator implements Serializable
FlowGraphTable t = new FlowGraphTable(b.getExecution());
t.build();
for (Row r : t.getRows()) {
if (r.getDisplayName().equals("Step with label")) {
if (r.getDisplayName().contains("Step with label")) {
found = true;
}
}
Expand All @@ -386,7 +386,7 @@ private static class Decorator extends LauncherDecorator implements Serializable
FlowGraphTable t = new FlowGraphTable(b.getExecution());
t.build();
for (Row r : t.getRows()) {
if (r.getDisplayName().equals(singleLabel)) {
if (r.getDisplayName().contains(singleLabel)) {
found = true;
}
}
Expand Down

0 comments on commit c05073b

Please sign in to comment.