From 10cec96f8c4bc5435eacaa8ce63f3b7a41691c27 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 29 Nov 2021 03:21:26 +0000 Subject: [PATCH] Tests: Rename classes in block template tests per the naming conventions. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://make.wordpress.org/core/handbook/testing/automated-testing/writing-phpunit-tests/#naming-and-organization Follow-up to [51003], as a continuation of the previous changes in ​[47780], [48911], [49327], [50291], [50292], [50342], [50452], [50453], [50456], [50967], [50968], [50969], [51491], [51492], [51493], [51623], [51639], [51646], [51650], [51651], [51860], [52264]. See #53363. git-svn-id: https://develop.svn.wordpress.org/trunk@52265 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/block-template-utils.php | 2 +- tests/phpunit/tests/block-template.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/tests/block-template-utils.php b/tests/phpunit/tests/block-template-utils.php index 58992832d6..58a543a3de 100644 --- a/tests/phpunit/tests/block-template-utils.php +++ b/tests/phpunit/tests/block-template-utils.php @@ -10,7 +10,7 @@ * * @group block-templates */ -class Block_Template_Utils_Test extends WP_UnitTestCase { +class Tests_Block_Template_Utils extends WP_UnitTestCase { private static $post; private static $template_part_post; diff --git a/tests/phpunit/tests/block-template.php b/tests/phpunit/tests/block-template.php index 29a69b15da..d659580f7c 100644 --- a/tests/phpunit/tests/block-template.php +++ b/tests/phpunit/tests/block-template.php @@ -10,7 +10,7 @@ * * @group block-templates */ -class Block_Template_Test extends WP_UnitTestCase { +class Tests_Block_Template extends WP_UnitTestCase { private static $post; private static $template_canvas_path = ABSPATH . WPINC . '/template-canvas.php';