Akira Ajisaka created MAPREDUCE-7093:
----------------------------------------

             Summary: Use assertEquals instead of assertTrue(a == b) in 
TestMapReduceJobControlWithMocks
                 Key: MAPREDUCE-7093
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7093
             Project: Hadoop Map/Reduce
          Issue Type: Bug
          Components: test
            Reporter: Akira Ajisaka


For example:{code}
    assertTrue(job1.getJobState() == ControlledJob.State.SUCCESS);
{code}
should be
{code}
    assertEquals(ControlledJob.State.SUCCESS, job1.getJobState());
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to