Skip to content

Commit

Permalink
MINOR Fixing ArrayDataTest to use toMap() instead of getArray() which…
Browse files Browse the repository at this point in the history
… is deprecated.
  • Loading branch information
Sean Harvey committed May 10, 2012
1 parent 7f4c6e3 commit 23c93b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/ArrayDataTest.php
Expand Up @@ -68,7 +68,7 @@ function testGetArray() {

$arrayData = new ArrayData($array);

$this->assertEquals($arrayData->getArray(), $array);
$this->assertEquals($arrayData->toMap(), $array);

Deprecation::restore_settings($originalDeprecation);
}
Expand Down

0 comments on commit 23c93b9

Please sign in to comment.