[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:
Matthew Jason Benson 2011-11-17 23:56:21 +00:00
parent 679090a612
commit d487814aba
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ public void testIsAssignable() throws SecurityException, NoSuchMethodException,
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));