Skip to content

Commit

Permalink
PHPUnit HelperTest fix error 4096
Browse files Browse the repository at this point in the history
Commit 5458f70 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.
  • Loading branch information
dregad committed Nov 8, 2014
1 parent a7cae9f commit c134cb5
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/Mantis/HelperTest.php
Expand Up @@ -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) ),

Expand Down

0 comments on commit c134cb5

Please sign in to comment.