File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-core/src/test/java/org/springframework/core/annotation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2014 the original author or authors.
2
+ * Copyright 2002-2015 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -105,7 +105,7 @@ public void getAnnotationAttributesFavorsInheritedAnnotationsOverMoreLocallyDecl
105
105
Transactional .class .getName ());
106
106
assertNotNull ("AnnotationAttributes for @Transactional on SubSubClassWithInheritedAnnotation" , attributes );
107
107
108
- // TODO [SPR-11475 ] Set expected to true.
108
+ // TODO [SPR-11598 ] Set expected to true.
109
109
boolean expected = false ;
110
110
assertEquals ("readOnly flag for SubSubClassWithInheritedAnnotation." , expected , attributes .getBoolean ("readOnly" ));
111
111
}
@@ -117,7 +117,7 @@ public void getAnnotationAttributesFavorsInheritedComposedAnnotationsOverMoreLoc
117
117
assertNotNull ("AnnotationAttributtes for @Transactional on SubSubClassWithInheritedComposedAnnotation." ,
118
118
attributes );
119
119
120
- // TODO [SPR-11475 ] Set expected to true.
120
+ // TODO [SPR-11598 ] Set expected to true.
121
121
boolean expected = false ;
122
122
assertEquals ("readOnly flag for SubSubClassWithInheritedComposedAnnotation." , expected ,
123
123
attributes .getBoolean ("readOnly" ));
You can’t perform that action at this time.
0 commit comments