HDFS-13648. Fix TestGetConf#testGetJournalNodes on Windows due to a mismatch line separator. Contributed by Giovanni Matteo Fumarola.
This commit is contained in:
parent
e308ac88d3
commit
8f83b9abf9
|
@ -388,7 +388,7 @@ public class TestGetConf {
|
||||||
}
|
}
|
||||||
buffer.append(val);
|
buffer.append(val);
|
||||||
}
|
}
|
||||||
buffer.append("\n");
|
buffer.append(System.lineSeparator());
|
||||||
expected1 = buffer.toString();
|
expected1 = buffer.toString();
|
||||||
|
|
||||||
Set<String> actual = DFSUtil.getJournalNodeAddresses(conf);
|
Set<String> actual = DFSUtil.getJournalNodeAddresses(conf);
|
||||||
|
@ -462,7 +462,7 @@ public class TestGetConf {
|
||||||
actual = DFSUtil.getJournalNodeAddresses(conf);
|
actual = DFSUtil.getJournalNodeAddresses(conf);
|
||||||
assertEquals(expected.toString(), actual.toString());
|
assertEquals(expected.toString(), actual.toString());
|
||||||
|
|
||||||
actual1 = "\n";
|
actual1 = System.lineSeparator();
|
||||||
expected1 = getAddressListFromTool(TestType.JOURNALNODE,
|
expected1 = getAddressListFromTool(TestType.JOURNALNODE,
|
||||||
conf, true);
|
conf, true);
|
||||||
assertEquals(expected1, actual1);
|
assertEquals(expected1, actual1);
|
||||||
|
@ -479,7 +479,7 @@ public class TestGetConf {
|
||||||
|
|
||||||
expected1 = getAddressListFromTool(TestType.JOURNALNODE,
|
expected1 = getAddressListFromTool(TestType.JOURNALNODE,
|
||||||
conf, true);
|
conf, true);
|
||||||
actual1 = "\n";
|
actual1 = System.lineSeparator();
|
||||||
assertEquals(expected1, actual1);
|
assertEquals(expected1, actual1);
|
||||||
conf.clear();
|
conf.clear();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue