Merge pull request #10109 from danieltaylor/patch-1

change "Aborted" to "Failed" under testFailed()
This commit is contained in:
Loredana Crusoveanu 2020-10-16 19:15:49 +03:00 committed by GitHub
commit 696f2d80af
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public class TestResultLoggerExtension implements TestWatcher, AfterAllCallback
@Override
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);
}