Minor : fix term references validation msg on glossary import (#18058)

This commit is contained in:
sonika-shah 2024-10-01 14:21:33 +05:30 committed by GitHub
parent 66cd00c568
commit f6b6874f57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -223,7 +223,7 @@ public class GlossaryRepository extends EntityRepository<Glossary> {
importFailure(
printer,
invalidField(
6, "Term References should be given in the format referenceName:endpoint url."),
6, "Term References should be given in the format referenceName;endpoint url."),
csvRecord);
processRecord = false;
return null;

View File

@ -545,7 +545,7 @@ public class GlossaryResourceTest extends EntityResourceTest<Glossary, CreateGlo
getFailedRecord(
record,
invalidField(
6, "Term References should be given in the format referenceName:endpoint url."))
6, "Term References should be given in the format referenceName;endpoint url."))
};
assertRows(result, expectedRows);