From 0c52c929c51c996cd1ecbc87c22f849c785fe1d5 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 22 Dec 2018 19:52:31 +0100 Subject: [PATCH] updated test --- .gitignore | 2 ++ lam/tests/lib/3rdParty/pla/functionsTest.php | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) 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);