You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Wen-Hsiu,Chang (JIRA)" <ji...@apache.org> on 2017/04/10 04:41:41 UTC

[jira] [Comment Edited] (HBASE-17895) TestAsyncProcess#testAction fails if unsafe support is false

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

Wen-Hsiu,Chang edited comment on HBASE-17895 at 4/10/17 4:40 AM:
-----------------------------------------------------------------

I want to be an assignee


was (Author: ashiou):
I want to assign this

> 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
>            Reporter: Chia-Ping Tsai
>            Priority: Trivial
>              Labels: beginner
>             Fix For: 2.0.0
>
>
> {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)