We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9d3ca commit 12bbb35Copy full SHA for 12bbb35
src/test/java/com/github/fge/jsonschema/core/exceptions/ProcessingExceptionTest.java
@@ -34,8 +34,8 @@ public final class ProcessingExceptionTest
34
public void thrownProcessingMessagesHaveLevelFatal()
35
{
36
final ProcessingMessage message = new ProcessingMessage();
37
- new ProcessingException(message);
38
- assertMessage(message).hasLevel(LogLevel.FATAL);
+ final ProcessingException exception = new ProcessingException(message);
+ assertMessage(exception.getProcessingMessage()).hasLevel(LogLevel.FATAL);
39
}
40
41
@Test
0 commit comments