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

[ignite] branch master updated: IGNITE-13807 [MINOR] Fix error message in tests. (#8530)

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

nizhikov 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 4ba240b  IGNITE-13807 [MINOR] Fix error message in tests. (#8530)
4ba240b is described below

commit 4ba240b6f41d4a2fbc4182e09b0cb497d39d5eb9
Author: Pavel Pereslegin <xx...@gmail.com>
AuthorDate: Thu Dec 3 11:26:30 2020 +0300

    IGNITE-13807 [MINOR] Fix error message in tests. (#8530)
---
 .../apache/ignite/internal/encryption/EncryptedCacheNodeJoinTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/encryption/EncryptedCacheNodeJoinTest.java b/modules/core/src/test/java/org/apache/ignite/internal/encryption/EncryptedCacheNodeJoinTest.java
index 2391bdb..072afff 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/encryption/EncryptedCacheNodeJoinTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/encryption/EncryptedCacheNodeJoinTest.java
@@ -284,7 +284,7 @@ public class EncryptedCacheNodeJoinTest extends AbstractEncryptionTest {
         if (client && newCfg) {
             String expErrMsg = "Joining node has encrypted caches which are not presented on the cluster, " +
                 "encrypted caches configured on client node cannot be started when such node joins " +
-                "the cluster, these caches can be started manually (dynamically) after node is joined " +
+                "the cluster, these caches can be started manually (dynamically) after node joined" +
                 "[caches=" + cacheName() + ']';
 
             GridTestUtils.assertThrowsAnyCause(log, () -> startClientGrid(CLIENT), IgniteSpiException.class, expErrMsg);