Skip to content
Closed
Prev Previous commit
Spacing CS fix
  • Loading branch information
Mamaduka authored Feb 3, 2023
commit 1cc848e70d2bace7a036471f718a358ea4152e8b
2 changes: 1 addition & 1 deletion tests/phpunit/tests/theme/wpThemeJsonResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ public function test_get_merged_data_returns_origin( $origin, $core_palette, $co
$theme_json = WP_Theme_JSON_Resolver::get_merged_data( $origin );
$settings = $theme_json->get_settings();
$styles = $theme_json->get_styles_block_nodes();
$styles = array_filter(
$styles = array_filter(
$styles,
static function( $element ) {
return isset( $element['name'] ) && 'my/block-with-styles' === $element['name'];
Expand Down