Skip to content

Commit

Permalink
align equals
Browse files Browse the repository at this point in the history
  • Loading branch information
mreishus committed Sep 24, 2024
1 parent d690419 commit 904a156
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/phpunit/tests/blocks/wpBlockMetadataRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 904a156

Please sign in to comment.