Author: dgolovin
Date: 2009-09-24 20:39:53 -0400 (Thu, 24 Sep 2009)
New Revision: 17721
Modified:
trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/InputFractionalValueTest_JBIDE4790.java
Log:
fix tests compilation errors
Modified:
trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/InputFractionalValueTest_JBIDE4790.java
===================================================================
---
trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/InputFractionalValueTest_JBIDE4790.java 2009-09-24
20:48:08 UTC (rev 17720)
+++
trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/InputFractionalValueTest_JBIDE4790.java 2009-09-25
00:39:53 UTC (rev 17721)
@@ -82,7 +82,7 @@
StyleAttributes styleAttributes = page.getStyleAttributes();
assertEquals(testedValue, styleAttributes
- .getAttribute(TEST_CSS_ATTRIBUTE_NAME));
+ .get(TEST_CSS_ATTRIBUTE_NAME));
String[] parsedTestValue = Util.convertExtString(testedValue);
@@ -90,7 +90,7 @@
String newTestedValue = parsedTestValue[0] + "." + parsedTestValue[1];
//$NON-NLS-1$
- styleAttributes.getAttributeMap().put(TEST_CSS_ATTRIBUTE_NAME,
+ styleAttributes.put(TEST_CSS_ATTRIBUTE_NAME,
newTestedValue);
testedValue = declaration.getPropertyValue(TEST_CSS_ATTRIBUTE_NAME);
@@ -107,7 +107,7 @@
newTestedValue = parsedTestValue[0] + "3" + parsedTestValue[1];
//$NON-NLS-1$
try {
- styleAttributes.getAttributeMap().put(TEST_CSS_ATTRIBUTE_NAME,
+ styleAttributes.put(TEST_CSS_ATTRIBUTE_NAME,
newTestedValue);
} catch (DOMException e) {
Show replies by date