Skip to content

Commit

Permalink
fix: corrected UnsatisfiableDependencyException with disposables depe…
Browse files Browse the repository at this point in the history
…ndencies for #2762
  • Loading branch information
Julien Kronegg committed Jul 17, 2023
1 parent 9911158 commit e38cae2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ void print_red_F_for_failed_hook_monochrome() {
bus.send(new TestStepFinished(Instant.now(), mocktestCase, stubPickleStepTestStep, result));

// Then
assertThat(out, bytes(equalTo("F" )));
assertThat(out, bytes(equalTo("F")));
formatter.setMonochrome(false);
}

private class StubTestCase implements TestCase {
private static class StubTestCase implements TestCase {
@Override
public Integer getLine() {
return null;
Expand Down Expand Up @@ -145,7 +145,7 @@ public UUID getId() {
}
}

private class StubPickleStepTestStep implements PickleStepTestStep {
private static class StubPickleStepTestStep implements PickleStepTestStep {
@Override
public String getPattern() {
return null;
Expand Down

0 comments on commit e38cae2

Please sign in to comment.