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/09 16:08:41 UTC

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

Chia-Ping Tsai created HBASE-17895:
--------------------------------------

             Summary: 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: Chia-Ping Tsai
             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)