Fix capabilities intergration tests

Split the array element selection and the member selection.
This commit is contained in:
Roeland Jago Douma 2016-03-08 14:52:54 +01:00
parent 15833d9843
commit 0b4ff1a9e3
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@ class CapabilitiesContext implements Context, SnippetAcceptingContext {
foreach ($formData->getHash() as $row) {
$path_to_element = explode('@@@', $row['path_to_element']);
$answeredValue = $capabilitiesXML->$row['capability'];
$answeredValue = $capabilitiesXML->{$row['capability']};
for ($i = 0; $i < count($path_to_element); $i++){
$answeredValue = $answeredValue->$path_to_element[$i];
$answeredValue = $answeredValue->{$path_to_element[$i]};
}
$answeredValue = (string)$answeredValue;
PHPUnit_Framework_Assert::assertEquals(