diff --git a/.gitignore b/.gitignore index 039dc04c..3dba0d0a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ /.buildpath /.project /.Readme.md.html +/vendor/ +/composer.lock diff --git a/lam/tests/lib/3rdParty/pla/functionsTest.php b/lam/tests/lib/3rdParty/pla/functionsTest.php index 1715d34b..dbc95c61 100644 --- a/lam/tests/lib/3rdParty/pla/functionsTest.php +++ b/lam/tests/lib/3rdParty/pla/functionsTest.php @@ -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);