From 451044d24d9454862dec29bb3172208abaf93a31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Zi=C3=83=C2=B3=C3=85=E2=80=9Akowski?= Date: Mon, 24 May 2021 09:58:23 +0000 Subject: [PATCH] Editor: Rename the unit test file for `_wp_array_set` function Follow-up [50958]. See #53175. git-svn-id: https://develop.svn.wordpress.org/trunk@50962 602fd350-edb4-49c9-b593-d223f7449a82 --- .../tests/{class-wp-array-set-test.php => wp-array-set.php} | 6 ++++++ 1 file changed, 6 insertions(+) rename tests/phpunit/tests/{class-wp-array-set-test.php => wp-array-set.php} (97%) diff --git a/tests/phpunit/tests/class-wp-array-set-test.php b/tests/phpunit/tests/wp-array-set.php similarity index 97% rename from tests/phpunit/tests/class-wp-array-set-test.php rename to tests/phpunit/tests/wp-array-set.php index 9accb2deae..d1e8a9bf8b 100644 --- a/tests/phpunit/tests/class-wp-array-set-test.php +++ b/tests/phpunit/tests/wp-array-set.php @@ -13,6 +13,8 @@ class WP_Array_Set_Test extends WP_UnitTestCase { /** * Test _wp_array_set() with simple non subtree path. + * + * @ticket 53175 */ public function test_simple_not_subtree_set() { $test_array = array(); @@ -42,6 +44,8 @@ class WP_Array_Set_Test extends WP_UnitTestCase { /** * Test _wp_array_set() with subtree paths. + * + * @ticket 53175 */ public function test_subtree_set() { $test_array = array(); @@ -90,6 +94,8 @@ class WP_Array_Set_Test extends WP_UnitTestCase { /** * Test _wp_array_set() with invalid parameters. + * + * @ticket 53175 */ public function test_invalid_parameters_set() { $test = 3;