Disable broken JDK19 test

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2023-03-21 07:40:02 -05:00
parent cc408b7fe5
commit 4a761f4aee
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@ import org.eclipse.jetty.server.session.TestServer;
import org.eclipse.jetty.util.NanoTime;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledForJreRange;
import org.junit.jupiter.api.condition.JRE;
@ -45,7 +46,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
* See bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=444595
*/
@Testcontainers(disabledWithoutDocker = true)
@DisabledForJreRange(min = JRE.JAVA_19) // mongo fails on JDK 19
@Tag("flaky")
public class AttributeNameTest
{
@BeforeAll