Skip to content
Snippets Groups Projects
Commit 4ae9e7fc authored by felmer's avatar felmer
Browse files

fixing test by looking for another log message to indicating finishing data...

fixing test by looking for another log message to indicating finishing data set registration. CHeck was to restrictive.

SVN: 27369
parent acd587c0
No related branches found
No related tags found
No related merge requests found
...@@ -181,7 +181,13 @@ public class ImageBase64EncodingTest extends AbstractScreeningSystemTestCase ...@@ -181,7 +181,13 @@ public class ImageBase64EncodingTest extends AbstractScreeningSystemTestCase
@Override @Override
protected boolean checkLogContentForFinishedDataSetRegistration(String logContent) protected boolean checkLogContentForFinishedDataSetRegistration(String logContent)
{ {
return super.checkLogContentForFinishedDataSetRegistration(logContent) && logContent.contains("Post registration of 4. of 4 data sets"); return super.checkLogContentForFinishedDataSetRegistration(logContent)
&& checkForFinalPostRegistrationLogEntry(logContent);
}
private boolean checkForFinalPostRegistrationLogEntry(String logContent)
{
return logContent.contains("Post registration of");
} }
private static class PlateImageReferenceList extends ArrayList<PlateImageReference> implements IModifiable private static class PlateImageReferenceList extends ArrayList<PlateImageReference> implements IModifiable
......
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