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

Jakob Homan commented on GIRAPH-184:
------------------------------------

We can dramatically shrink this patch with static imports to make this type of 
change unnecessary:
{code}-        assertFalse(ComparisonUtils.equal(one, two));
-        assertFalse(ComparisonUtils.equal(two, one));
+        Assert.assertFalse(ComparisonUtils.equal(one, two));
+        Assert.assertFalse(ComparisonUtils.equal(two, one));{code}
                
> Upgrade to junit4
> -----------------
>
>                 Key: GIRAPH-184
>                 URL: https://issues.apache.org/jira/browse/GIRAPH-184
>             Project: Giraph
>          Issue Type: Bug
>            Reporter: Devaraj K
>         Attachments: GIRAPH-184-1.patch, GIRAPH-184.patch
>
>
> Presently Giraph uses JUnit 3.8.1. We can upgrade to JUnit 4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to