You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2019/03/26 08:46:16 UTC

[ignite] branch master updated: IGNITE-11568 Change afterTest() annotation in TcpDiscoveryFailedJoinTest (#6303)

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

av 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 d8d7110  IGNITE-11568 Change afterTest() annotation in TcpDiscoveryFailedJoinTest (#6303)
d8d7110 is described below

commit d8d7110b89708e8187474cb476747c306157f593
Author: Ivan Fedotov <va...@gmail.com>
AuthorDate: Tue Mar 26 11:46:09 2019 +0300

    IGNITE-11568 Change afterTest() annotation in TcpDiscoveryFailedJoinTest (#6303)
---
 .../apache/ignite/spi/discovery/tcp/TcpDiscoveryFailedJoinTest.java | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryFailedJoinTest.java b/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryFailedJoinTest.java
index ec3d970..3fa7a5c 100644
--- a/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryFailedJoinTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryFailedJoinTest.java
@@ -32,7 +32,6 @@ import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.spi.discovery.tcp.messages.TcpDiscoveryAbstractMessage;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
-import org.junit.After;
 import org.junit.Test;
 
 /**
@@ -75,9 +74,8 @@ public class TcpDiscoveryFailedJoinTest extends GridCommonAbstractTest {
         return cfg;
     }
 
-    /** */
-    @After
-    public void afterTest() throws Exception {
+    /** {@inheritDoc} */
+    @Override protected void afterTest() throws Exception {
         stopAllGrids();
     }