CE-882 Fix test; more words in validation error

This commit is contained in:
2024-04-29 07:50:45 -05:00
parent 13c64de280
commit 7b2e9c4f55
2 changed files with 3 additions and 3 deletions

View File

@ -832,7 +832,7 @@ public class QInstanceValidator
}
}
assertCondition(Objects.equals(tmpTable.getName(), joinTableName), prefix + "has a joinNameChain doesn't end in the expected table [" + joinTableName + "]");
assertCondition(Objects.equals(tmpTable.getName(), joinTableName), prefix + "has a joinNameChain doesn't end in the expected table [" + joinTableName + "] (was: " + tmpTable.getName() + ")");
assertCondition(findField(qInstance, table, joins, fieldName), prefix + "has an unrecognized fieldName: " + fieldName);
}