Merge pull request #22951 from owncloud/fix_int

Fix capabilities intergration tests
This commit is contained in:
Thomas Müller 2016-03-09 12:21:43 +01:00
commit 879d51b3e8
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(