Index: src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java =================================================================== RCS file: /home/eclipse/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java,v retrieving revision 1.63 diff -u -r1.63 ASTConverterTestAST3_2.java --- src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java 14 Sep 2005 19:28:09 -0000 1.63 +++ src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java 14 Sep 2005 23:31:55 -0000 @@ -6742,7 +6742,7 @@ /* * https://bugs.eclipse.org/bugs/show_bug.cgi?id=109535 */ - public void _test0618() throws JavaModelException { + public void test0618() throws JavaModelException { ICompilationUnit workingCopy = null; try { String contents = @@ -6776,7 +6776,7 @@ InfixExpression infixExpression2 = (InfixExpression) leftOperand; extendedOperands = infixExpression.extendedOperands(); assertEquals("Wrong size", 0, extendedOperands.size()); - assertEquals("Wrong operator", InfixExpression.Operator.PLUS, infixExpression.getOperator()); + assertEquals("Wrong operator", InfixExpression.Operator.PLUS, infixExpression2.getOperator()); assertEquals("Not a string literal", ASTNode.STRING_LITERAL, infixExpression2.getLeftOperand().getNodeType()); assertEquals("Not a string literal", ASTNode.STRING_LITERAL, infixExpression2.getRightOperand().getNodeType()); } finally {