mirror of
https://github.com/LDAPAccountManager/lam.git
synced 2025-10-03 09:49:16 +02:00
updated test
This commit is contained in:
parent
57b2add165
commit
0c52c929c5
2 changed files with 2 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,3 +2,5 @@
|
|||
/.buildpath
|
||||
/.project
|
||||
/.Readme.md.html
|
||||
/vendor/
|
||||
/composer.lock
|
||||
|
|
4
lam/tests/lib/3rdParty/pla/functionsTest.php
vendored
4
lam/tests/lib/3rdParty/pla/functionsTest.php
vendored
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue