monsieurp 15/03/21 19:04:42 Added: jnr-ffi-2.0.2-junit48.patch Log: Version bump courtesy of Arfrever <[email protected]>. Fix bug 525342. Signed-off-by: [email protected] (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)
Revision Changes Path 1.1 dev-java/jnr-ffi/files/jnr-ffi-2.0.2-junit48.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jnr-ffi/files/jnr-ffi-2.0.2-junit48.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jnr-ffi/files/jnr-ffi-2.0.2-junit48.patch?rev=1.1&content-type=text/plain Index: jnr-ffi-2.0.2-junit48.patch =================================================================== --- a/src/test/java/jnr/ffi/ObjectReferenceManagerTest.java +++ b/src/test/java/jnr/ffi/ObjectReferenceManagerTest.java @@ -35,7 +35,7 @@ Pointer ptr = referenceManager.add(bar); Pointer ptr2 = referenceManager.add(bar2); assertNotSame(ptr, ptr2); - assertNotEquals(ptr, ptr2); + assertTrue(!ptr.equals(ptr2)); assertSame(bar, referenceManager.get(ptr)); assertSame(bar2, referenceManager.get(ptr2)); }
