Skip to content
Snippets Groups Projects
Commit f6840a36 authored by jakubs's avatar jakubs
Browse files

refactor: improve error message

SVN: 26628
parent 5fbaaca8
No related merge requests found
......@@ -253,7 +253,8 @@ public abstract class SystemTestCase extends AssertJUnit
dataSetImported = true;
} else
{
assertFalse(logContent, logContent.contains("ERROR"));
assertFalse("ERROR message found in log.\n" + logContent,
logContent.contains("ERROR"));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment