fix testBothArgsNull equivalence test

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@996710 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2010-09-13 22:16:47 +00:00
parent 4141411e3a
commit 857cf0714d

View File

@ -415,7 +415,7 @@ public void testOneArgNull() {
@Test
public void testBothArgsNull() {
assertFalse(AnnotationUtils.equals(field1.getAnnotation(TestAnnotation.class), null));
assertTrue(AnnotationUtils.equals(null, null));
}
@Test