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

(cherry picked from commit f6b6874f5707d960c4a0317bd020e66d3b01c31c)
This commit is contained in:
sonika-shah 2024-10-01 14:21:33 +05:30 committed by Sachin Chaurasiya
parent f86527dc79
commit 5d8546c135
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);