HADOOP-15458. TestLocalFileSystem#testFSOutputStreamBuilder fails on Windows. Contributed by Xiao Liang.
This commit is contained in:
parent
1ba4e62304
commit
abc3e4bad9
@ -689,7 +689,7 @@ public void testFSOutputStreamBuilder() throws Exception {
|
||||
// and permission
|
||||
FSDataOutputStreamBuilder builder =
|
||||
fileSys.createFile(path);
|
||||
builder.build();
|
||||
try (FSDataOutputStream stream = builder.build()) {
|
||||
Assert.assertEquals("Should be default block size",
|
||||
builder.getBlockSize(), fileSys.getDefaultBlockSize());
|
||||
Assert.assertEquals("Should be default replication factor",
|
||||
@ -700,6 +700,7 @@ public void testFSOutputStreamBuilder() throws Exception {
|
||||
IO_FILE_BUFFER_SIZE_DEFAULT));
|
||||
Assert.assertEquals("Should be default permission",
|
||||
builder.getPermission(), FsPermission.getFileDefault());
|
||||
}
|
||||
|
||||
// Test set 0 to replication, block size and buffer size
|
||||
builder = fileSys.createFile(path);
|
||||
|
Loading…
Reference in New Issue
Block a user