Skip to content

Commit

Permalink
Merge #2406 into 2.0.0-M2
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed Jul 28, 2022
2 parents d3fccef + f5f1645 commit 3dc0e16
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -185,9 +185,7 @@ void testFromPath() throws Exception {

private static File createTemporaryDirectory() {
try {
final File tempDir = File.createTempFile("BufferFluxTest", "", null);
assertThat(tempDir.delete()).isTrue();
assertThat(tempDir.mkdir()).isTrue();
final File tempDir = Files.createTempDirectory("ByteBufFluxTest").toFile();
return tempDir;
}
catch (Exception e) {
Expand Down

0 comments on commit 3dc0e16

Please sign in to comment.