You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ib...@apache.org on 2023/12/19 12:40:28 UTC

(ignite-3) branch main updated: IGNITE-21121 Move ItLogicalTopologyTest to the cluster-management module (#2977)

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

ibessonov 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 00775e8f24 IGNITE-21121 Move ItLogicalTopologyTest to the cluster-management module (#2977)
00775e8f24 is described below

commit 00775e8f2439cd36cd5546e6f7e4e241ad243aee
Author: Roman Puchkovskiy <ro...@gmail.com>
AuthorDate: Tue Dec 19 16:40:22 2023 +0400

    IGNITE-21121 Move ItLogicalTopologyTest to the cluster-management module (#2977)
---
 modules/cluster-management/build.gradle                                 | 1 +
 .../internal/cluster/management/topology}/ItLogicalTopologyTest.java    | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/cluster-management/build.gradle b/modules/cluster-management/build.gradle
index 071979b27a..988af51217 100644
--- a/modules/cluster-management/build.gradle
+++ b/modules/cluster-management/build.gradle
@@ -69,6 +69,7 @@ dependencies {
     integrationTestImplementation testFixtures(project(':ignite-core'))
     integrationTestImplementation testFixtures(project(':ignite-configuration'))
     integrationTestImplementation testFixtures(project(':ignite-network'))
+    integrationTestImplementation testFixtures(project(':ignite-runner'))
     integrationTestImplementation libs.awaitility
     integrationTestImplementation libs.jetbrains.annotations
 }
diff --git a/modules/compute/src/integrationTest/java/org/apache/ignite/internal/compute/ItLogicalTopologyTest.java b/modules/cluster-management/src/integrationTest/java/org/apache/ignite/internal/cluster/management/topology/ItLogicalTopologyTest.java
similarity index 99%
rename from modules/compute/src/integrationTest/java/org/apache/ignite/internal/compute/ItLogicalTopologyTest.java
rename to modules/cluster-management/src/integrationTest/java/org/apache/ignite/internal/cluster/management/topology/ItLogicalTopologyTest.java
index 41da3d4cd0..ff6210a705 100644
--- a/modules/compute/src/integrationTest/java/org/apache/ignite/internal/compute/ItLogicalTopologyTest.java
+++ b/modules/cluster-management/src/integrationTest/java/org/apache/ignite/internal/cluster/management/topology/ItLogicalTopologyTest.java
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.ignite.internal.compute;
+package org.apache.ignite.internal.cluster.management.topology;
 
 import static org.apache.ignite.internal.testframework.IgniteTestUtils.testNodeName;
 import static org.hamcrest.MatcherAssert.assertThat;