diff --git a/phpunit/class-wp-theme-json-test.php b/phpunit/class-wp-theme-json-test.php index 0202057a91e576..81d65c6b531c4b 100644 --- a/phpunit/class-wp-theme-json-test.php +++ b/phpunit/class-wp-theme-json-test.php @@ -342,6 +342,7 @@ public function test_get_stylesheet() { $all = $variables . $styles . $presets; + $this->assertEquals( $all, $theme_json->get_stylesheet() ); $this->assertEquals( $styles, $theme_json->get_stylesheet( array( 'styles' ) ) ); $this->assertEquals( $presets, $theme_json->get_stylesheet( array( 'presets' ) ) ); $this->assertEquals( $variables, $theme_json->get_stylesheet( array( 'variables' ) ) );