Skip to content

Commit 8e4d985

Browse files
author
Sebastian Benjamin
committed
Fix unicode hyphen
1 parent 0bcf7f1 commit 8e4d985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Studies/src/org/labkey/studies/StudiesManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,11 @@ public void testStudyInsert() throws Exception
359359
sd.setLabel(sd.getLabel() + " (updated)");
360360

361361
StudyDefinition.StudyCohort firstCohort = sd.getCohorts().get(0);
362-
firstCohort.setLabel(firstCohort.getLabel() + "updated");
362+
firstCohort.setLabel(firstCohort.getLabel() + "-updated");
363363

364364
StudyDefinition.StudyCohort newCohort = new StudyDefinition.StudyCohort();
365365
newCohort.setCohortName("NEW");
366-
newCohort.setLabel("Brandnew cohort");
366+
newCohort.setLabel("Brand-new cohort");
367367
sd.getCohorts().add(newCohort);
368368

369369
StudyDefinition.Timepoint removedTp = sd.getTimepoints().remove(0);

0 commit comments

Comments
 (0)