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

sergeychugunov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new b312c7d6ce3 IGNITE-17857 Codestyle fixes in test code.
b312c7d6ce3 is described below

commit b312c7d6ce36e65a1d95f7e1a2d54a5047a503d0
Author: Sergey Chugunov <[email protected]>
AuthorDate: Tue Oct 18 11:53:22 2022 +0300

    IGNITE-17857 Codestyle fixes in test code.
---
 .../spi/deployment/uri/GridUriDeploymentConfigSelfTest.java       | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentConfigSelfTest.java
 
b/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentConfigSelfTest.java
index 71a99fb3d0d..f2a5d4c53fa 100644
--- 
a/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentConfigSelfTest.java
+++ 
b/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentConfigSelfTest.java
@@ -18,8 +18,8 @@
 package org.apache.ignite.spi.deployment.uri;
 
 import java.io.File;
-import java.util.Arrays;
 import java.util.Collections;
+
 import org.apache.ignite.configuration.IgniteConfiguration;
 import org.apache.ignite.testframework.config.GridTestProperties;
 import org.apache.ignite.testframework.junits.spi.GridSpiAbstractConfigTest;
@@ -68,9 +68,9 @@ public class GridUriDeploymentConfigSelfTest extends 
GridSpiAbstractConfigTest<U
 
             IgniteConfiguration clientCfg = getConfiguration();
             startClientGrid(clientName, clientCfg);
-        } finally {
-            stopGrid(srvName);
-            stopGrid(clientName);
+        }
+        finally {
+            stopAllGrids();
         }
     }
 }

Reply via email to