Fix bug in unit test

This commit is contained in:
Robin K 2022-11-06 19:58:19 +01:00 committed by Dale Schultz
parent a637a382f0
commit df1a4b5c75
1 changed files with 9 additions and 2 deletions

View File

@ -103,8 +103,15 @@ public class XDFConversionLayerTest{
assertEquals(r.getFaultyTables().size(), 0);
}
catch(AssertionError e)
{
System.out.println(f + ": Faulty Tables " + r.getFaultyTables().size());
{
if(r == null)
{
System.out.println(f + " failed to load completely");
}
else
{
System.out.println(f + ": Faulty Tables " + r.getFaultyTables().size());
}
continue;
}
// Populate tables visually