diff --git a/block-catalog.php b/block-catalog.php index 663ae04..e5db880 100755 --- a/block-catalog.php +++ b/block-catalog.php @@ -3,7 +3,7 @@ * Plugin Name: Block Catalog * Description: Keep track of which Gutenberg Blocks are used across your site. * Version: 1.6.2 - * Requires at least: 6.5 + * Requires at least: 6.6 * Requires PHP: 7.4 * Author: 10up * Author URI: https://10up.com diff --git a/tests/classes/CatalogBuilderTest.php b/tests/classes/CatalogBuilderTest.php index 12ed823..e99089c 100644 --- a/tests/classes/CatalogBuilderTest.php +++ b/tests/classes/CatalogBuilderTest.php @@ -212,7 +212,7 @@ function test_it_can_build_nested_post_block_terms() { 'core/column' => 'Column', 'core/columns' => 'Columns', 'core/list' => 'List', - 'core/list-item' => 'List item', + 'core/list-item' => 'List Item', 'core/paragraph' => 'Paragraph', 'core/quote' => 'Quote', ]; @@ -272,7 +272,7 @@ function test_it_can_set_nested_post_block_terms() { $this->assertContains( 'Column', $actual ); $this->assertContains( 'Columns', $actual ); $this->assertContains( 'List', $actual ); - $this->assertContains( 'List item', $actual ); + $this->assertContains( 'List Item', $actual ); $this->assertContains( 'Paragraph', $actual ); $this->assertContains( 'Quote', $actual ); $this->assertContains( 'Core', $actual ); diff --git a/tests/classes/RESTSupportTest.php b/tests/classes/RESTSupportTest.php index 317384c..b6fb9e2 100644 --- a/tests/classes/RESTSupportTest.php +++ b/tests/classes/RESTSupportTest.php @@ -51,7 +51,7 @@ function test_it_can_load_all_block_catalog_terms() { $this->assertContains( 'Column', $actual ); $this->assertContains( 'Columns', $actual ); $this->assertContains( 'List', $actual ); - $this->assertContains( 'List item', $actual ); + $this->assertContains( 'List Item', $actual ); $this->assertContains( 'Paragraph', $actual ); $this->assertContains( 'Quote', $actual ); $this->assertContains( 'Core', $actual );