updated test

This commit is contained in:
Roland Gruber 2018-12-22 19:52:31 +01:00
parent 57b2add165
commit 0c52c929c5
2 changed files with 2 additions and 4 deletions

2
.gitignore vendored
View File

@ -2,3 +2,5 @@
/.buildpath
/.project
/.Readme.md.html
/vendor/
/composer.lock

View File

@ -74,8 +74,6 @@ class PlaFunctionsTest extends PHPUnit_Framework_TestCase {
$data = array(
'a' => array('key1' => '1'),
'b' => array('key1' => '5', 'key2' => 3),
'c' => array('key1' => '2'),
'd' => array('key1' => '3'),
);
masort($data, 'key2', 0);
@ -83,8 +81,6 @@ class PlaFunctionsTest extends PHPUnit_Framework_TestCase {
$dataWanted = array(
'b' => array('key1' => '5', 'key2' => 3),
'a' => array('key1' => '1'),
'c' => array('key1' => '2'),
'd' => array('key1' => '3'),
);
$this->compareArray($dataWanted, $data);