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

jt2594838 pushed a commit to branch dev/1.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/dev/1.3 by this push:
     new 427d4028bea fix the IoTDBRegionMigrateNormalIT (#18181)
427d4028bea is described below

commit 427d4028beaf3f2eda39a26d8ce3c09315a18969
Author: CYB <[email protected]>
AuthorDate: Fri Jul 10 13:55:45 2026 +0800

    fix the IoTDBRegionMigrateNormalIT (#18181)
    
    Co-authored-by: Yaobin Chen <[email protected]>
---
 .../it/regionmigration/pass/IoTDBRegionMigrateNormalIT.java           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/IoTDBRegionMigrateNormalIT.java
 
b/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/IoTDBRegionMigrateNormalIT.java
index 1a028188800..227959603fe 100644
--- 
a/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/IoTDBRegionMigrateNormalIT.java
+++ 
b/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/IoTDBRegionMigrateNormalIT.java
@@ -58,9 +58,9 @@ public class IoTDBRegionMigrateNormalIT extends 
IoTDBRegionOperationReliabilityI
 
     try (final Connection connection = 
makeItCloseQuietly(EnvFactory.getEnv().getConnection());
         final Statement statement = 
makeItCloseQuietly(connection.createStatement())) {
-      assertCounts(statement, 1, 1);
-      statement.execute("INSERT INTO root.sg.d1(timestamp,speed,temperature) 
values(101, 3, 4)");
       assertCounts(statement, 2, 2);
+      statement.execute("INSERT INTO root.sg.d1(timestamp,speed,temperature) 
values(102, 5, 6)");
+      assertCounts(statement, 3, 3);
     }
   }
 

Reply via email to