Skip to content

Commit

Permalink
relax constraint on error output
Browse files Browse the repository at this point in the history
  • Loading branch information
jshook committed Jan 18, 2024
1 parent 03c45a2 commit 7467817
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -68,7 +68,7 @@ void testExitStatusOnActivityBasicCommandException() {
"driver=diag", "cyclerate=10", "not_a_thing", "cycles=100", "-vvv"
);
String stdout = String.join("\n", result.getStdoutData());
assertThat(stdout).contains("internal error: You requested exactly one instance of a service by name 'not_a_thing'");
assertThat(stdout).contains("You requested exactly one instance of a service by name 'not_a_thing'");
assertThat(result.exitStatus).isEqualTo(2);
}

Expand Down

0 comments on commit 7467817

Please sign in to comment.