change "Aborted" to "Failed" under testFailed()
This commit is contained in:
parent
2f8478db34
commit
d7fc3796d7
|
@ -46,7 +46,7 @@ public class TestResultLoggerExtension implements TestWatcher, AfterAllCallback
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void testFailed(ExtensionContext context, Throwable cause) {
|
public void testFailed(ExtensionContext context, Throwable cause) {
|
||||||
LOG.info("Test Aborted for test {}: ", context.getDisplayName());
|
LOG.info("Test Failed for test {}: ", context.getDisplayName());
|
||||||
|
|
||||||
testResultsStatus.add(TestResultStatus.FAILED);
|
testResultsStatus.add(TestResultStatus.FAILED);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue