Skip to content

Commit

Permalink
Minor : fix term references validation msg on glossary import (#18058)
Browse files Browse the repository at this point in the history
  • Loading branch information
sonika-shah committed Oct 1, 2024
1 parent 66cd00c commit f6b6874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ private List<TermReference> getTermReferences(CSVPrinter printer, CSVRecord csvR
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ record = ",g1,dsp1,dsc1,h1;h2;h3,,term1:http://term1,,,,,";
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);

Expand Down

0 comments on commit f6b6874

Please sign in to comment.