From f36af772eae76ea7c232d956a8c7e45595495bb7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 31 Jan 2015 02:11:46 +0000 Subject: [PATCH] Remove redundant parameter. see #30753. git-svn-id: https://develop.svn.wordpress.org/trunk@31311 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/functions.php b/tests/phpunit/tests/functions.php index d4f9e40da2..527780ae27 100644 --- a/tests/phpunit/tests/functions.php +++ b/tests/phpunit/tests/functions.php @@ -46,7 +46,7 @@ class Tests_Functions extends WP_UnitTestCase { * @ticket 30753 */ function test_wp_parse_args_boolean_strings() { - $args = wp_parse_args( 'foo=false&bar=true', array() ); + $args = wp_parse_args( 'foo=false&bar=true' ); $this->assertInternalType( 'string', $args['foo'] ); $this->assertInternalType( 'string', $args['bar'] ); }