Index: src/org/eclipse/jdt/core/tests/dom/ASTConverterTest2.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverterTest2.java,v retrieving revision 1.157 diff -u -r1.157 ASTConverterTest2.java --- src/org/eclipse/jdt/core/tests/dom/ASTConverterTest2.java 16 Jun 2005 08:40:56 -0000 1.157 +++ src/org/eclipse/jdt/core/tests/dom/ASTConverterTest2.java 10 Jan 2006 15:32:18 -0000 @@ -4844,7 +4844,7 @@ assertEquals("Wrong size", 1, fields.length); IVariableBinding variableBinding = fields[0]; Object constantValue = variableBinding.getConstantValue(); - assertNull("Got a constant value", constantValue); + assertNotNull("Missing constant", constantValue); } /** Index: src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java,v retrieving revision 1.57.2.3 diff -u -r1.57.2.3 ASTConverterTestAST3_2.java --- src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java 22 Sep 2005 21:39:43 -0000 1.57.2.3 +++ src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java 10 Jan 2006 15:32:26 -0000 @@ -4893,7 +4893,7 @@ assertEquals("Wrong size", 1, fields.length); IVariableBinding variableBinding = fields[0]; Object constantValue = variableBinding.getConstantValue(); - assertNull("Got a constant value", constantValue); + assertNotNull("Missing constant", constantValue); } /**