HDFS-13557. TestDFSAdmin#testListOpenFiles fails on Windows. Contributed by Anbang Hu.
This commit is contained in:
parent
d47c09dcb1
commit
6b67161ca3
|
@ -813,12 +813,14 @@ public class TestDFSAdmin {
|
|||
if (closedFileSet != null) {
|
||||
for (Path closedFilePath : closedFileSet) {
|
||||
assertThat(outStr,
|
||||
not(containsString(closedFilePath.toString() + "\n")));
|
||||
not(containsString(closedFilePath.toString() +
|
||||
System.lineSeparator())));
|
||||
}
|
||||
}
|
||||
|
||||
for (Path openFilePath : openFilesMap.keySet()) {
|
||||
assertThat(outStr, is(containsString(openFilePath.toString() + "\n")));
|
||||
assertThat(outStr, is(containsString(openFilePath.toString() +
|
||||
System.lineSeparator())));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue