sanpwc commented on code in PR #2420:
URL: https://github.com/apache/ignite-3/pull/2420#discussion_r1286668240


##########
modules/distribution-zones/src/test/java/org/apache/ignite/internal/distributionzones/BaseDistributionZoneManagerTest.java:
##########
@@ -161,4 +172,38 @@ void startDistributionZoneManager() {
 
         metaStorageManager.deployWatches();
     }
-}
+
+    protected void createZone(
+            String zoneName,
+            @Nullable Integer dataNodesAutoAdjustScaleUp,
+            @Nullable Integer dataNodesAutoAdjustScaleDown,
+            @Nullable String filter
+    ) {
+        DistributionZonesTestUtil.createZone(
+                distributionZoneManager,
+                zoneName,
+                dataNodesAutoAdjustScaleUp,
+                dataNodesAutoAdjustScaleDown,
+                filter
+        );
+    }
+
+    protected void alterZone(
+            String zoneName,
+            @Nullable Integer dataNodesAutoAdjustScaleUp,
+            @Nullable Integer dataNodesAutoAdjustScaleDown,
+            @Nullable String filter
+    ) {
+        DistributionZonesTestUtil.alterZone(
+                distributionZoneManager,
+                zoneName,
+                dataNodesAutoAdjustScaleUp,
+                dataNodesAutoAdjustScaleDown,
+                filter
+        );
+    }
+
+    protected void dropZone(String zoneName) {
+        DistributionZonesTestUtil.dropZone(distributionZoneManager, zoneName);
+    }
+}

Review Comment:
   Empty line is missing.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to