diff --git a/phpunit/class-block-supported-styles-test.php b/phpunit/class-block-supported-styles-test.php index fdff7f381a3dc..7f8d3dfd7c5a4 100644 --- a/phpunit/class-block-supported-styles-test.php +++ b/phpunit/class-block-supported-styles-test.php @@ -149,7 +149,7 @@ function test_custom_color_support() { 'innerHTML' => array(), ); - $expected_styles = 'test:style; color: #000;background-color: #fff;'; + $expected_styles = 'test:style; color: #000; background-color: #fff;'; $expected_classes = 'wp-block-example foo-bar-class has-text-color has-background'; $this->assert_styles_and_classes_match( $block, $expected_classes, $expected_styles ); @@ -486,7 +486,7 @@ function test_all_supported() { ); $expected_classes = 'wp-block-example foo-bar-class has-text-color has-background'; - $expected_styles = 'test:style; color: #000;background-color: #fff;background: some-gradient;font-size: 10px;line-height: 20;'; + $expected_styles = 'test:style; color: #000; background-color: #fff; background: some-gradient; font-size: 10px; line-height: 20;'; $this->assert_styles_and_classes_match( $block, $expected_classes, $expected_styles ); }