[ 
https://issues.apache.org/jira/browse/HBASE-17895?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15990427#comment-15990427
 ] 

Hudson commented on HBASE-17895:
--------------------------------

ABORTED: Integrated in Jenkins build HBase-HBASE-14614 #190 (See 
[https://builds.apache.org/job/HBase-HBASE-14614/190/])
HBASE-17895 TestAsyncProcess#testAction fails if unsafe support is false 
(chia7712: rev 23249eb0f5466b3608d80847b398b38b698fcf95)
* (edit) 
hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java


> TestAsyncProcess#testAction fails if unsafe support is false
> ------------------------------------------------------------
>
>                 Key: HBASE-17895
>                 URL: https://issues.apache.org/jira/browse/HBASE-17895
>             Project: HBase
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 2.0.0
>            Reporter: Chia-Ping Tsai
>            Assignee: Wen-Hsiu,Chang
>            Priority: Trivial
>              Labels: beginner
>             Fix For: 2.0.0
>
>         Attachments: HBASE-17895-v0.patch, HBASE-17895-v1.patch
>
>
> {noformat}
>     assertEquals(-1, action_0.compareTo(action_1));
>     assertEquals(1, action_1.compareTo(action_0));
> {noformat}
> The correction is shown below.
> {noformat}
>     assertTrue(action_0.compareTo(action_1) < 0);
>     assertTrue(action_1.compareTo(action_0) > 0);
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to