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

apkhmv 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 b60daf24f3 IGNITE-21724 Support "-ea" version suffix in 
ItInitializedClusterRestTest (#3391)
b60daf24f3 is described below

commit b60daf24f3a2183e10e09ce91f12f1aa21b54917
Author: Mikhail <[email protected]>
AuthorDate: Wed Mar 13 17:33:50 2024 +0300

    IGNITE-21724 Support "-ea" version suffix in ItInitializedClusterRestTest 
(#3391)
---
 .../org/apache/ignite/internal/rest/ItInitializedClusterRestTest.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/modules/rest/src/integrationTest/java/org/apache/ignite/internal/rest/ItInitializedClusterRestTest.java
 
b/modules/rest/src/integrationTest/java/org/apache/ignite/internal/rest/ItInitializedClusterRestTest.java
index cce082d4c3..298c5b20f5 100644
--- 
a/modules/rest/src/integrationTest/java/org/apache/ignite/internal/rest/ItInitializedClusterRestTest.java
+++ 
b/modules/rest/src/integrationTest/java/org/apache/ignite/internal/rest/ItInitializedClusterRestTest.java
@@ -42,7 +42,8 @@ import org.junit.jupiter.api.TestInfo;
 public class ItInitializedClusterRestTest extends AbstractRestTestBase {
     /** <a href="https://semver.org";>semver</a> compatible regex. */
     private static final String IGNITE_SEMVER_REGEX =
-            
"(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<maintenance>\\d+)((?<snapshot>-SNAPSHOT)|-(?<alpha>alpha\\d+)|--(?<beta>beta\\d+))?";
+            "(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<maintenance>\\d+)"
+                    + 
"((?<snapshot>-SNAPSHOT)|-(?<alpha>alpha\\d+)|--(?<beta>beta\\d+)|---(?<ea>ea\\d+))?";
 
     @BeforeEach
     @Override

Reply via email to