[
https://issues.apache.org/jira/browse/HBASE-17895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ted Yu reassigned HBASE-17895:
------------------------------
Assignee: Wen-Hsiu,Chang
> 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
>
>
> {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)