From a5bef1ea91289ebe819fc79b750d758d33faae10 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 22 Jul 2021 16:44:34 +0000 Subject: [PATCH] Tests: Correct class name for `WP_Filesystem_Base::find_folder()` tests. A concrete test class should be suffixed with `Test`, not `UnitTestCase(s)`. Follow-up to [25053]. Props jrf. See #53363. git-svn-id: https://develop.svn.wordpress.org/trunk@51476 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/filesystem/findFolder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/filesystem/findFolder.php b/tests/phpunit/tests/filesystem/findFolder.php index 3b517531ed..6ada55caf8 100644 --- a/tests/phpunit/tests/filesystem/findFolder.php +++ b/tests/phpunit/tests/filesystem/findFolder.php @@ -6,7 +6,7 @@ require_once __DIR__ . '/base.php'; * @group filesystem * @group wp-filesystem */ -class WP_Filesystem_find_folder_UnitTestCases extends WP_Filesystem_UnitTestCase { +class WP_Filesystem_Find_Folder_Test extends WP_Filesystem_UnitTestCase { function test_ftp_has_root_access() { global $wp_filesystem;