1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: deactivating a flaky test, after discussing it with upstream
Author: Pierre Gruet <pgt@debian.org>
Bug: https://github.com/ronmamo/reflections/issues/362
Forwarded: https://github.com/ronmamo/reflections/issues/362
Last-Update: 2021-10-28
--- a/src/test/java/org/reflections/JdkTests.java
+++ b/src/test/java/org/reflections/JdkTests.java
@@ -2,6 +2,7 @@
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.reflections.scanners.Scanner;
import org.reflections.scanners.Scanners;
@@ -67,6 +68,7 @@
measure("cleanup");
}
+ @Disabled("flaky test")
@Test
public void checkSubTypes() {
Map<String, Set<String>> diff = reflect(
|