From 2437500cfef89629a3cbfee24a2d524a27021e11 Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Thu, 20 Jul 2017 13:51:13 +0200 Subject: [PATCH] Ignore DataBufferUtilsTests#writeAsynchronousFileChannel Issue: SPR-15798 --- .../springframework/core/io/buffer/DataBufferUtilsTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-core/src/test/java/org/springframework/core/io/buffer/DataBufferUtilsTests.java b/spring-core/src/test/java/org/springframework/core/io/buffer/DataBufferUtilsTests.java index ba6e9e164f..10f4435d34 100644 --- a/spring-core/src/test/java/org/springframework/core/io/buffer/DataBufferUtilsTests.java +++ b/spring-core/src/test/java/org/springframework/core/io/buffer/DataBufferUtilsTests.java @@ -30,6 +30,7 @@ import java.nio.file.StandardOpenOption; import java.time.Duration; import java.util.stream.Collectors; +import org.junit.Ignore; import org.junit.Test; import reactor.core.publisher.Flux; import reactor.test.StepVerifier; @@ -206,6 +207,7 @@ public class DataBufferUtilsTests extends AbstractDataBufferAllocatingTestCase { } @Test + @Ignore // SPR-15798 public void writeAsynchronousFileChannel() throws Exception { DataBuffer foo = stringBuffer("foo"); DataBuffer bar = stringBuffer("bar");