Skip to content
Snippets Groups Projects
Commit b445283b authored by Sergio Gomez's avatar Sergio Gomez
Browse files

Fix bug in ParseTest for PHP 5.3 version

parent 33c68d56
No related branches found
No related tags found
No related merge requests found
......@@ -95,10 +95,10 @@ XML;
{
$result = $this
->xml
->getValueAlternatives([
->getValueAlternatives(array(
'/Root/Other',
'/Root/Value'
], true)
), true)
;
$this->assertEquals(
......@@ -116,10 +116,10 @@ XML;
{
$result = $this
->xml
->getValueAlternatives([
->getValueAlternatives(array(
'/Root/Foo',
'/Root/Bar'
], false)
), false)
;
$this->assertEquals(
......@@ -138,10 +138,10 @@ XML;
{
$this
->xml
->getValueAlternatives([
->getValueAlternatives(array(
'/Root/Foo',
'/Root/Bar'
], true)
), true)
;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment