From 31e92478728c8a95e8e297847699b03842558cd3 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 8 Nov 2021 17:07:49 +0000 Subject: [PATCH] Tests: Remove the `formatting` group from `wp_is_numeric_array()` tests. Similar to `wp_array_slice_assoc()` or other array-related functions, this appears to be a general-purpose function unrelated to the Formatting component. Add missing `public` visibility keyword. Follow-up to [52037]. See #53971. git-svn-id: https://develop.svn.wordpress.org/trunk@52048 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/functions/wpIsNumericArray.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/tests/functions/wpIsNumericArray.php b/tests/phpunit/tests/functions/wpIsNumericArray.php index b825138678..309f901e35 100644 --- a/tests/phpunit/tests/functions/wpIsNumericArray.php +++ b/tests/phpunit/tests/functions/wpIsNumericArray.php @@ -1,11 +1,10 @@ assertSame( $expected, wp_is_numeric_array( $input ) ); }