aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder/testsrc
diff options
context:
space:
mode:
authoraclement <aclement>2006-02-14 14:06:36 +0000
committeraclement <aclement>2006-02-14 14:06:36 +0000
commit32fccd359a00bcfcfef4c9ab4a08eb722aee13b7 (patch)
tree7b53ba0dfb77df49ad7ad38e5890fc6250f3625b /bcel-builder/testsrc
parent34d6d63fdc7780258fe57d8e50ce9bc4a424583d (diff)
downloadaspectj-32fccd359a00bcfcfef4c9ab4a08eb722aee13b7.tar.gz
aspectj-32fccd359a00bcfcfef4c9ab4a08eb722aee13b7.zip
Bugette: annotation value of primitive type 'char' wasnt working !
Diffstat (limited to 'bcel-builder/testsrc')
-rw-r--r--bcel-builder/testsrc/org/aspectj/apache/bcel/classfile/tests/RuntimeVisibleAnnotationAttributeTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bcel-builder/testsrc/org/aspectj/apache/bcel/classfile/tests/RuntimeVisibleAnnotationAttributeTest.java b/bcel-builder/testsrc/org/aspectj/apache/bcel/classfile/tests/RuntimeVisibleAnnotationAttributeTest.java
index 644c3e8da..7a1925dde 100644
--- a/bcel-builder/testsrc/org/aspectj/apache/bcel/classfile/tests/RuntimeVisibleAnnotationAttributeTest.java
+++ b/bcel-builder/testsrc/org/aspectj/apache/bcel/classfile/tests/RuntimeVisibleAnnotationAttributeTest.java
@@ -202,7 +202,7 @@ public class RuntimeVisibleAnnotationAttributeTest extends BcelTestCase {
checkValue(ann,"dval","33.4");
checkValue(ann,"sval","99");
checkValue(ann,"bval","2");
- checkValue(ann,"cval","5");
+ checkValue(ann,"cval",new Character('5').toString());
checkValue(ann,"zval","false");
}