SpotBugs fix

pull/61/head
Richard Körber 2018-03-10 15:20:56 +01:00
parent 49677d8dbc
commit 323788dfdb
No known key found for this signature in database
GPG Key ID: AAB9FD19C78AA3E0
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ public class AcmeRetryAfterExceptionTest {
* Test that date is required. * Test that date is required.
*/ */
@Test(expected = NullPointerException.class) @Test(expected = NullPointerException.class)
public void testRequiredAcmeRetryAfterException() { public void testRequiredAcmeRetryAfterException() throws AcmeException {
new AcmeRetryAfterException("null-test", null); throw new AcmeRetryAfterException("null-test", null);
} }
} }