Commit 66959262 authored by Kristof Ringleff's avatar Kristof Ringleff

use array_replace_recursive instead

parent e8698528
...@@ -412,7 +412,7 @@ class EcomDev_PHPUnit_Model_Fixture ...@@ -412,7 +412,7 @@ class EcomDev_PHPUnit_Model_Fixture
if (empty($this->_fixture)) { if (empty($this->_fixture)) {
$this->_fixture = $data; $this->_fixture = $data;
} else { } else {
$this->_fixture = array_merge_recursive($this->_fixture, $data); $this->_fixture = array_replace_recursive($this->_fixture, $data);
} }
return $this; return $this;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment