Skip to content

Commit

Permalink
[JENKINS-41244] One more place where the NFD vs NFC rules of the unde…
Browse files Browse the repository at this point in the history
…rlying FS are important
  • Loading branch information
stephenc committed Jan 20, 2017
1 parent 4cad012 commit c419016
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -243,7 +243,7 @@ private void checkComputedFolder(ComputedFolderImpl instance, int round, Normali
"아이 7",
"niño ocho"
)) {
checkChild(instance, name);
checkChild(instance, Normalizer.normalize(name, form));
}
}

Expand Down Expand Up @@ -271,7 +271,7 @@ private void checkChild(ComputedFolderImpl instance, String idealName) throws IO
String encodedName = encode(idealName);
FreeStyleProject item = instance.getItem(encodedName);
assertThat("We have an item for name " + idealName, item, notNullValue());
assertThat("The root directory if the item for name " + idealName + " is mangled",
assertThat("The root directory of the item for name " + idealName + " is mangled",
item.getRootDir().getName(), is(mangle(idealName)));
File nameFile = new File(item.getRootDir(), ChildNameGenerator.CHILD_NAME_FILE);
assertThat("We have the " + ChildNameGenerator.CHILD_NAME_FILE + " for the item for name " + idealName,
Expand Down

0 comments on commit c419016

Please sign in to comment.