This is an automated email from the ASF dual-hosted git repository.

mpochatkin 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 a7ad5b0cef IGNITE-22445 Fix flaky ItCatalogDslTest (#3897)
a7ad5b0cef is described below

commit a7ad5b0cefb2589efabe3a4398f97a97be12e287
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Mon Jun 10 15:11:52 2024 +0300

    IGNITE-22445 Fix flaky ItCatalogDslTest (#3897)
---
 .../java/org/apache/ignite/internal/catalog/ItCatalogDslTest.java      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/modules/catalog-dsl/src/integrationTest/java/org/apache/ignite/internal/catalog/ItCatalogDslTest.java
 
b/modules/catalog-dsl/src/integrationTest/java/org/apache/ignite/internal/catalog/ItCatalogDslTest.java
index 227f62cfaf..09983a5ef6 100644
--- 
a/modules/catalog-dsl/src/integrationTest/java/org/apache/ignite/internal/catalog/ItCatalogDslTest.java
+++ 
b/modules/catalog-dsl/src/integrationTest/java/org/apache/ignite/internal/catalog/ItCatalogDslTest.java
@@ -98,7 +98,8 @@ class ItCatalogDslTest extends ClusterPerClassIntegrationTest 
{
         );
 
         // When drop zone by definition
-        catalog().dropZoneAsync(zoneDefinition);
+        CompletableFuture<Void> dropZone = 
catalog().dropZoneAsync(zoneDefinition);
+        assertThat(dropZone, willCompleteSuccessfully());
 
         // Then zone was dropped
         assertThrows(

Reply via email to