Skip to content
Prev Previous commit
Next Next commit
Fix phpcs alignment in tests
  • Loading branch information
hellofromtonya authored Aug 14, 2023
commit 451ec8d8f00e9bff34819213aa2d44fb353fec64
Original file line number Diff line number Diff line change
Expand Up @@ -369,15 +369,18 @@ public function data_install_with_improper_inputs() {
file_put_contents( $temp_file_path1, 'Mocking file content' );

return array(
'not a font families array' => array(
'not a font families array'
=> array(
'font_families' => 'This is not an array',
),

'empty array' => array(
'empty array'
=> array(
'font_families' => array(),
),

'without slug' => array(
'without slug'
=> array(
'font_families' => array(
array(
'fontFamily' => 'Piazzolla',
Expand All @@ -397,7 +400,7 @@ public function data_install_with_improper_inputs() {
),
),

'with empty font face propety' => array(
'with empty font face property' => array(
'font_families' => array(
array(
'fontFamily' => 'Piazzolla',
Expand Down