You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Chia-Ping Tsai (JIRA)" <ji...@apache.org> on 2017/04/11 05:14:41 UTC

[jira] [Reopened] (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:all-tabpanel ]

Chia-Ping Tsai reopened HBASE-17895:
------------------------------------

After attaching the patch, you should click the "submit patch" to trigger QA

> 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
>            Assignee: Wen-Hsiu,Chang
>            Priority: Trivial
>              Labels: beginner
>             Fix For: 2.0.0
>
>         Attachments: HBASE-17895-v0.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)