View | Details | Raw Unified | Return to bug 61946 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/dom/ASTConverterTest2.java (-1 / +1 lines)
Lines 4844-4850 Link Here
4844
		assertEquals("Wrong size", 1, fields.length);
4844
		assertEquals("Wrong size", 1, fields.length);
4845
		IVariableBinding variableBinding = fields[0];
4845
		IVariableBinding variableBinding = fields[0];
4846
		Object constantValue = variableBinding.getConstantValue();
4846
		Object constantValue = variableBinding.getConstantValue();
4847
		assertNull("Got a constant value", constantValue);
4847
		assertNotNull("Missing constant", constantValue);
4848
	}
4848
	}
4849
	
4849
	
4850
	/**
4850
	/**
(-)src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java (-1 / +1 lines)
Lines 4893-4899 Link Here
4893
		assertEquals("Wrong size", 1, fields.length);
4893
		assertEquals("Wrong size", 1, fields.length);
4894
		IVariableBinding variableBinding = fields[0];
4894
		IVariableBinding variableBinding = fields[0];
4895
		Object constantValue = variableBinding.getConstantValue();
4895
		Object constantValue = variableBinding.getConstantValue();
4896
		assertNull("Got a constant value", constantValue);
4896
		assertNotNull("Missing constant", constantValue);
4897
	}
4897
	}
4898
	
4898
	
4899
	/**
4899
	/**

Return to bug 61946