diff --git a/tests/phpunit/tests/blocks/wpBlockMetadataRegistry.php b/tests/phpunit/tests/blocks/wpBlockMetadataRegistry.php index 07ab15bbbd48d..f1195e1ef0c4c 100644 --- a/tests/phpunit/tests/blocks/wpBlockMetadataRegistry.php +++ b/tests/phpunit/tests/blocks/wpBlockMetadataRegistry.php @@ -20,7 +20,7 @@ public function tear_down() { } public function test_register_collection_and_get_metadata() { - $path = '/test/path'; + $path = '/test/path'; $manifest_data = array( 'test-block' => array( 'name' => 'test-block', @@ -37,13 +37,13 @@ public function test_register_collection_and_get_metadata() { } public function test_get_nonexistent_metadata() { - $path = '/nonexistent/path'; + $path = '/nonexistent/path'; $retrieved_metadata = WP_Block_Metadata_Registry::get_metadata( $path, 'nonexistent-block' ); $this->assertNull( $retrieved_metadata ); } public function test_has_metadata() { - $path = '/another/test/path'; + $path = '/another/test/path'; $manifest_data = array( 'existing-block' => array( 'name' => 'existing-block',