Skip to content

Commit

Permalink
Testing: Fix failing PHPUnit test caused by changes in WP core (#32888)
Browse files Browse the repository at this point in the history
  • Loading branch information
gziolo authored and youknowriad committed Jun 24, 2021
1 parent bc5bd40 commit 4332aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpunit/class-block-editor-test.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function test_get_default_block_editor_settings() {
$settings = gutenberg_get_default_block_editor_settings();

$this->assertCount( 17, $settings );
$this->assertTrue( $settings['__unstableEnableFullSiteEditingBlocks'] );
$this->assertFalse( $settings['__unstableEnableFullSiteEditingBlocks'] );
$this->assertFalse( $settings['alignWide'] );
$this->assertInternalType( 'array', $settings['allowedMimeTypes'] );
$this->assertTrue( $settings['allowedBlockTypes'] );
Expand Down

0 comments on commit 4332aa5

Please sign in to comment.