Skip to content

Commit 74d446a

Browse files
GEODE-8496: skip windows test that broke after bumping junit from 4.12 to 4.13 (apache#5554)
1 parent e4918fe commit 74d446a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

geode-core/src/integrationTest/java/org/apache/geode/internal/cache/SimpleDiskRegionJUnitTest.java

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
import static org.junit.Assert.assertEquals;
2424
import static org.junit.Assert.fail;
25+
import static org.junit.Assume.assumeFalse;
2526

2627
import java.io.File;
2728
import java.util.Collections;
@@ -31,6 +32,7 @@
3132
import org.junit.Test;
3233

3334
import org.apache.geode.StatisticsFactory;
35+
import org.apache.geode.internal.lang.SystemUtils;
3436
import org.apache.geode.test.dunit.ThreadUtils;
3537

3638
/**
@@ -54,6 +56,7 @@ protected final void postSetUp() throws Exception {
5456
*/
5557
@Test
5658
public void testBasicClose() {
59+
assumeFalse(SystemUtils.isWindows());
5760
{
5861
deleteFiles();
5962
try {

0 commit comments

Comments
 (0)