This is an automated email from the ASF dual-hosted git repository.
sk0x50 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 2d5897533 IGNITE-17305 Disabled tests
2d5897533 is described below
commit 2d58975335fcbddd494a184a118ed835e20ba897
Author: Slava Koptilin <[email protected]>
AuthorDate: Tue Jul 5 14:27:51 2022 +0300
IGNITE-17305 Disabled tests
---
.../internal/rest/exception/handler/IgniteExceptionHandlerTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/modules/rest-api/src/test/java/org/apache/ignite/internal/rest/exception/handler/IgniteExceptionHandlerTest.java
b/modules/rest-api/src/test/java/org/apache/ignite/internal/rest/exception/handler/IgniteExceptionHandlerTest.java
index 250474884..7998ae0d0 100644
---
a/modules/rest-api/src/test/java/org/apache/ignite/internal/rest/exception/handler/IgniteExceptionHandlerTest.java
+++
b/modules/rest-api/src/test/java/org/apache/ignite/internal/rest/exception/handler/IgniteExceptionHandlerTest.java
@@ -32,6 +32,7 @@ import
org.apache.ignite.internal.rest.api.Problem.ProblemBuilder;
import org.apache.ignite.internal.rest.api.ValidationProblem;
import org.apache.ignite.lang.IgniteException;
import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
@@ -82,6 +83,7 @@ class IgniteExceptionHandlerTest {
@ParameterizedTest
@MethodSource("igniteExceptions")
+ @Disabled("https://issues.apache.org/jira/browse/IGNITE-17305")
void shouldHandleIgniteException(IgniteException givenIgniteException,
ProblemBuilder<? extends Problem, ?> expectedProblem) {
HttpResponse<? extends Problem> response =
exceptionHandler.handle(request, givenIgniteException);