[Form] Fixed property name in PropertyPathMapperTest

This commit is contained in:
Bernhard Schussek 2012-05-17 10:06:03 +02:00
parent c2a243f926
commit 03f50588c2

View File

@ -23,12 +23,12 @@ abstract class PropertyPathMapperTest_Form implements FormInterface
public function setAttribute($name, $value)
{
$this->attribute[$name] = $value;
$this->attributes[$name] = $value;
}
public function getAttribute($name)
{
return isset($this->attribute[$name]) ? $this->attribute[$name] : null;
return isset($this->attributes[$name]) ? $this->attributes[$name] : null;
}
public function setData($data)