You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/11/19 12:01:01 UTC

[iotdb-client-go] branch HTHou-patch-1 created (now edf64dd)

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

haonan pushed a change to branch HTHou-patch-1
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git


      at edf64dd  Update e2e_test.go

This branch includes the following new commits:

     new edf64dd  Update e2e_test.go

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb-client-go] 01/01: Update e2e_test.go

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch HTHou-patch-1
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git

commit edf64dd9c59e3f1d90937d958ef11d16b23590d5
Author: Haonan <hh...@outlook.com>
AuthorDate: Sat Nov 19 20:00:56 2022 +0800

    Update e2e_test.go
---
 test/e2e/e2e_test.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/e2e/e2e_test.go b/test/e2e/e2e_test.go
index beebf76..53e8ec6 100644
--- a/test/e2e/e2e_test.go
+++ b/test/e2e/e2e_test.go
@@ -216,7 +216,7 @@ func (s *e2eTestSuite) Test_InsertAlignedRecordsOfOneDevice() {
 	assert.Equal(status, "12.1")
 }
 func (s *e2eTestSuite) Test_InsertAlignedTablet() {
-	var timeseries = []string{"root.ln.device1.**"}
+	var timeseries = []string{"root.ln.device1.*"}
 	s.session.DeleteTimeseries(timeseries)
 	if tablet, err := createTablet(12); err == nil {
 		status, err := s.session.InsertAlignedTablet(tablet, false)
@@ -289,7 +289,7 @@ func createTablet(rowCount int) (*client.Tablet, error) {
 }
 
 func (s *e2eTestSuite) Test_InsertAlignedTablets() {
-	var timeseries = []string{"root.ln.device1.**"}
+	var timeseries = []string{"root.ln.device1.*"}
 	s.session.DeleteTimeseries(timeseries)
 	tablet1, err := createTablet(8)
 	if err != nil {