[LANG-776] reverse bad assertion to make failing test
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1203426 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
679090a612
commit
d487814aba
|
@ -341,7 +341,7 @@ public class TypeUtilsTest<B> {
|
|||
dis = uhder;
|
||||
Assert.assertTrue(TypeUtils.isAssignable(uhderType, disType));
|
||||
dis = ding;
|
||||
Assert.assertTrue(String.format("type %s not assignable to %s!", dingType, disType),
|
||||
Assert.assertFalse(String.format("type %s not assignable to %s!", dingType, disType),
|
||||
TypeUtils.isAssignable(dingType, disType));
|
||||
dis = tester;
|
||||
Assert.assertTrue(TypeUtils.isAssignable(testerType, disType));
|
||||
|
|
Loading…
Reference in New Issue