Skip to content

Commit

Permalink
Fix CS error
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Jan 16, 2017
1 parent 8aec91e commit 2d32a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Utility/XmlTest.php
Expand Up @@ -121,7 +121,7 @@ public function testBuild()
public function testBuildHuge()
{
$xml = '<tag>value</tag>';
$obj = Xml::build($xml, array('parseHuge' => true));
$obj = Xml::build($xml, ['parseHuge' => true]);
$this->assertEquals('tag', $obj->getName());
$this->assertEquals('value', (string)$obj);
}
Expand Down

0 comments on commit 2d32a1e

Please sign in to comment.