Skip to content

Commit

Permalink
Fix code line wrapping in User Guide
Browse files Browse the repository at this point in the history
Issue: #1621
  • Loading branch information
sbrannen committed Dec 18, 2018
1 parent 86ee343 commit fa3277c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ void verifyAllJupiterEvents() {
abortedWithReason(instanceOf(TestAbortedException.class),
message(m -> m.contains("abc does not contain Z")))),
event(test("failingTest"), started()),
event(test("failingTest"),
finishedWithFailure(instanceOf(ArithmeticException.class), message("/ by zero"))),
event(test("failingTest"), finishedWithFailure(
instanceOf(ArithmeticException.class), message("/ by zero"))),
event(container(ExampleTestCase.class), finishedSuccessfully()),
event(engine(), finishedSuccessfully()));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ void verifyJupiterMethodFailed() {
.tests() // <4>
.assertThatEvents().haveExactly(1, // <5>
event(test("failingTest"),
finishedWithFailure(instanceOf(ArithmeticException.class), message("/ by zero"))));
finishedWithFailure(
instanceOf(ArithmeticException.class), message("/ by zero"))));
}

}
Expand Down

0 comments on commit fa3277c

Please sign in to comment.