This is an automated email from the ASF dual-hosted git repository.
sunzesong pushed a commit to branch new_vector
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/new_vector by this push:
new 95b53c6 Fix test
95b53c6 is described below
commit 95b53c67c557b9e541ca1faf7dc8643d91e037e5
Author: samperson1997 <[email protected]>
AuthorDate: Wed Nov 10 14:24:39 2021 +0800
Fix test
---
.../org/apache/iotdb/tsfile/write/MetadataIndexConstructorTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/tsfile/src/test/java/org/apache/iotdb/tsfile/write/MetadataIndexConstructorTest.java
b/tsfile/src/test/java/org/apache/iotdb/tsfile/write/MetadataIndexConstructorTest.java
index 985988c..ee73f8f 100644
---
a/tsfile/src/test/java/org/apache/iotdb/tsfile/write/MetadataIndexConstructorTest.java
+++
b/tsfile/src/test/java/org/apache/iotdb/tsfile/write/MetadataIndexConstructorTest.java
@@ -163,9 +163,9 @@ public class MetadataIndexConstructorTest {
/** Example 5: 1 entities with 1 vector containing 9 measurements */
@Test
- public void vectorIndexTest1() {
+ public void vectorIndexTest() {
String[] devices = {"d0"};
- int[][] vectorMeasurement = {{9, 9}};
+ int[][] vectorMeasurement = {{9}};
test(devices, vectorMeasurement, null);
}