From c134cb5b68f898af25a1714151252909b36ff10d Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 8 Nov 2014 16:50:20 +0100 Subject: [PATCH] PHPUnit HelperTest fix error 4096 Commit 5458f7020999317b35f403fa2a0e477d6182ec12 changed function helper_array_transpose() signature, the argument MUST be an array so it does not make sense for the unit test to cover NULL, Scalar and Object types. --- tests/Mantis/HelperTest.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/Mantis/HelperTest.php b/tests/Mantis/HelperTest.php index 2a73e2af11..e57198b9f6 100644 --- a/tests/Mantis/HelperTest.php +++ b/tests/Mantis/HelperTest.php @@ -53,15 +53,6 @@ public function testArrayTranspose( $p_in, $p_out ) { */ public function providerArrayTranspose() { return array( - # null - array( null, null ), - - # scalar - array( 123, 123 ), - - # object - array( $this, $this ), - # simple array array( array(123,456), array(123,456) ),