Skip to content

Commit 04218be

Browse files
committed
correct formatting
1 parent aace70a commit 04218be

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/org/junit/tests/experimental/rules/ExpectedExceptionTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public static Collection<Object[]> testsWithEventMatcher() {
7272
hasSingleAssumptionFailure()},
7373
{ThrowExpectedAssertionError.class, everyTestRunSuccessful()},
7474
{
75-
DontThrowAssertionErrorButExpectOne.class,
76-
hasSingleFailureWithMessage("Expected test to throw an instance of java.lang.AssertionError")},
75+
DontThrowAssertionErrorButExpectOne.class,
76+
hasSingleFailureWithMessage("Expected test to throw an instance of java.lang.AssertionError")},
7777
{
7878
ThrowUnexpectedAssertionError.class,
7979
hasSingleFailureWithMessage(startsWith("\nExpected: an instance of java.lang.NullPointerException"))},
@@ -291,6 +291,7 @@ public void wrongException() {
291291
throw new AssertionError("the expected assertion error");
292292
}
293293
}
294+
294295
public static class DontThrowAssertionErrorButExpectOne {
295296
@Rule
296297
public ExpectedException thrown = none();

0 commit comments

Comments
 (0)