Skip to content

Commit

Permalink
Fixed logging of system actors (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
therealryan authored Sep 26, 2022
1 parent 953716c commit 8af97db
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,11 @@ protected void process( Flow flow ) {
.collect( toList() );

if( toExercise.isEmpty() ) {
reportAndSkip( flow, "No interactions with system " + systemUnderTest );
reportAndSkip( flow, String.format(
"No interactions with system [%s]",
systemUnderTest.stream()
.map( Actor::name )
.collect( Collectors.joining( "," ) ) ) );
}

List<Consumer<FlowData>> reportUpdates = new ArrayList<>();
Expand Down

0 comments on commit 8af97db

Please sign in to comment.