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

jiangtian pushed a commit to branch fix_unset_message
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/fix_unset_message by this push:
     new 0597c958d3a fix test
0597c958d3a is described below

commit 0597c958d3aef3e9e9b1eff2442523ebe6dfb63d
Author: Tian Jiang <[email protected]>
AuthorDate: Fri Jul 5 15:42:19 2024 +0800

    fix test
---
 .../test/java/org/apache/iotdb/confignode/persistence/TTLInfoTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/iotdb-core/confignode/src/test/java/org/apache/iotdb/confignode/persistence/TTLInfoTest.java
 
b/iotdb-core/confignode/src/test/java/org/apache/iotdb/confignode/persistence/TTLInfoTest.java
index 6140d8750c9..d5deb1d2b2c 100644
--- 
a/iotdb-core/confignode/src/test/java/org/apache/iotdb/confignode/persistence/TTLInfoTest.java
+++ 
b/iotdb-core/confignode/src/test/java/org/apache/iotdb/confignode/persistence/TTLInfoTest.java
@@ -215,7 +215,7 @@ public class TTLInfoTest {
         ttlInfo.unsetTTL(new SetTTLPlan(-1, "root")).getCode());
     assertEquals(
         TSStatusCode.PATH_NOT_EXIST.getStatusCode(),
-        ttlInfo.unsetTTL(new SetTTLPlan(-1, "root.sg100.f10.d1")).getCode());
+        ttlInfo.unsetTTL(new SetTTLPlan(-1, "root", "sg100", "f10", 
"d1")).getCode());
 
     PartialPath path = new PartialPath("root.test.db1.group1.group2.d1");
     ttlInfo.setTTL(new SetTTLPlan(Arrays.asList(path.getNodes()), 11111222L));

Reply via email to