From f9198ce9e18d2d625393649a1ab25b760536adf1 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Tue, 1 May 2018 09:51:41 +0200 Subject: [PATCH] added additional test --- lam/tests/lib/3rdParty/pla/functionsTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lam/tests/lib/3rdParty/pla/functionsTest.php b/lam/tests/lib/3rdParty/pla/functionsTest.php index f3321749..1715d34b 100644 --- a/lam/tests/lib/3rdParty/pla/functionsTest.php +++ b/lam/tests/lib/3rdParty/pla/functionsTest.php @@ -157,6 +157,7 @@ class PlaFunctionsTest extends PHPUnit_Framework_TestCase { $keysWanted = array_keys($dataWanted); $keysNew = array_keys($dataNew); foreach ($keysWanted as $index => $key) { + $this->assertEquals($keysWanted[$index], $keysNew[$index]); if (is_array($dataWanted[$key])) { $this->compareArray($dataWanted[$key], $dataNew[$keysNew[$index]]); }