updated AnnotationMetadata tests for change in Class exposure
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1062 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
parent
bf86e7cc9d
commit
a2ca813ce2
|
|
@ -79,7 +79,7 @@ public class AnnotationMetadataTests extends TestCase {
|
|||
assertEquals("myScope", scopeAttrs.get("value"));
|
||||
Map<String, Object> specialAttrs = metadata.getAnnotationAttributes(SpecialAttr.class.getName());
|
||||
assertEquals(2, specialAttrs.size());
|
||||
assertEquals(String.class, specialAttrs.get("clazz"));
|
||||
assertEquals(String.class.getName(), specialAttrs.get("clazz"));
|
||||
assertEquals(Thread.State.NEW, specialAttrs.get("state"));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue