Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading