Skip to content

Commit

Permalink
NIFI-5344 Fix Write Ahead Log Unit Test on Windows
Browse files Browse the repository at this point in the history
This closes apache#2819

Signed-off-by: zenfenan <[email protected]>
  • Loading branch information
patricker authored and zenfenan committed Jun 28, 2018
1 parent 022b64b commit 3be08b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ public void testRecoverAfterIOException() throws IOException {
@Test
public void testRecoverFileThatHasTrailingNULBytesAndTruncation() throws IOException {
final int numPartitions = 5;
final Path path = Paths.get("target/testRecoverFileThatHasTrailingNULBytes");
final Path path = Paths.get("target/testRecoverFileThatHasTrailingNULBytesAndTruncation");
deleteRecursively(path.toFile());
Files.createDirectories(path);

Expand Down Expand Up @@ -569,7 +569,7 @@ public void testRecoverFileThatHasTrailingNULBytesAndTruncation() throws IOExcep
@Test
public void testRecoverFileThatHasTrailingNULBytesNoTruncation() throws IOException {
final int numPartitions = 5;
final Path path = Paths.get("target/testRecoverFileThatHasTrailingNULBytes");
final Path path = Paths.get("target/testRecoverFileThatHasTrailingNULBytesNoTruncation");
deleteRecursively(path.toFile());
Files.createDirectories(path);

Expand Down

0 comments on commit 3be08b7

Please sign in to comment.