Skip to content

Commit

Permalink
Tests: Rename classes in phpunit/tests/feed/ per the naming convent…
Browse files Browse the repository at this point in the history
…ions.

https://make.wordpress.org/core/handbook/testing/automated-testing/writing-phpunit-tests/#naming-and-organization

Follow-up to [47780], [48911], [49327], [50291], [50292], [50342], [50452], [50453], [50456], [50967], [50968], [50969], [51491], [51492], [51493], [51623], [51639], [51646], [51650].

See #53363.

git-svn-id: https://develop.svn.wordpress.org/trunk@51651 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Aug 22, 2021
1 parent 43a8715 commit 402e2e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/phpunit/tests/feed/atom.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* @group feed
*/
class Tests_Feeds_Atom extends WP_UnitTestCase {
class Tests_Feed_Atom extends WP_UnitTestCase {
public static $user_id;
public static $posts;
public static $category;
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/tests/feed/rss2.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* @group feed
*/
class Tests_Feeds_RSS2 extends WP_UnitTestCase {
class Tests_Feed_RSS2 extends WP_UnitTestCase {
public static $user_id;
public static $posts;
public static $category;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
* @since 5.6.1
*/
class Tests_WP_SimplePie_File extends WP_UnitTestCase {
class Tests_Feed_wpSimplePieFile extends WP_UnitTestCase {
public static function set_up_before_class() {
parent::set_up_before_class();

Expand Down

0 comments on commit 402e2e6

Please sign in to comment.