#10226 fix heap dump

Signed-off-by: Ludovic Orban <lorban@bitronix.be>
This commit is contained in:
Ludovic Orban 2023-08-25 19:21:15 +02:00
parent 159238471b
commit f3a21cec6f
1 changed files with 2 additions and 2 deletions

View File

@ -146,8 +146,8 @@ public class AbstractTest
catch (Exception e)
{
String className = testInfo.getTestClass().orElseThrow().getName();
dumpHeap(prefix + className + msg);
fail(e.getMessage());
dumpHeap(prefix + className);
fail(e.getMessage() + msg);
}
}