fixed indexed property regression (SPR-6871)

This commit is contained in:
Juergen Hoeller
2010-02-20 15:53:09 +00:00
parent 5063c6dd00
commit 67b342d923
3 changed files with 6 additions and 6 deletions

View File

@@ -96,7 +96,7 @@ public class CheckboxTagTests extends AbstractFormTagTests {
assertEquals("input", checkboxElement.getName());
assertEquals("checkbox", checkboxElement.attribute("type").getValue());
assertEquals("someMapkey1", checkboxElement.attribute("id").getValue());
assertEquals("someMapkey", checkboxElement.attribute("name").getValue());
assertEquals("someMap[key]", checkboxElement.attribute("name").getValue());
assertEquals("checked", checkboxElement.attribute("checked").getValue());
assertEquals("true", checkboxElement.attribute("value").getValue());
}