You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2019/08/28 01:01:01 UTC

[incubator-iotdb] branch fix_travis created (now af9786c)

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

qiaojialin pushed a change to branch fix_travis
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


      at af9786c  fix travis

This branch includes the following new commits:

     new af9786c  fix travis

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.



[incubator-iotdb] 01/01: fix travis

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

qiaojialin pushed a commit to branch fix_travis
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit af9786ccb925b718342769f6d7b765f061b07844
Author: qiaojialin <64...@qq.com>
AuthorDate: Wed Aug 28 09:00:33 2019 +0800

    fix travis
---
 jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBQueryResultSetTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBQueryResultSetTest.java b/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBQueryResultSetTest.java
index 70de759..f0c13f6 100644
--- a/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBQueryResultSetTest.java
+++ b/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBQueryResultSetTest.java
@@ -130,7 +130,7 @@ public class IoTDBQueryResultSetTest {
     when(client.fetchResults(any(TSFetchResultsReq.class))).thenReturn(fetchResultsResp);
     when(fetchResultsResp.getStatus()).thenReturn(Status_SUCCESS);
 
-    TSCloseOperationResp closeResp = new TSCloseOperationResp();
+    TSRPCResp closeResp = new TSRPCResp();
     closeResp.setStatus(Status_SUCCESS);
     when(client.closeOperation(any(TSCloseOperationReq.class))).thenReturn(closeResp);
   }