Skip to content

Commit

Permalink
Fix whitespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewserong committed Mar 22, 2023
1 parent 6fdd51f commit 72a5feb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phpunit/block-supports/typography-test.php
Original file line number Diff line number Diff line change
Expand Up @@ -554,15 +554,15 @@ public function data_generate_font_size_preset_fixtures() {

'should use ceiling of 4rem for minimum font size when custom min font size is not set' => array(
'font_size' => array(
'size' => '12rem',
'size' => '12rem',
),
'should_use_fluid_typography' => true,
'expected_output' => 'clamp(4rem, 4rem + ((1vw - 0.48rem) * 15.385), 12rem)',
),

'should use ceiling of 64px for minimum font size when custom min font size is not set' => array(
'font_size' => array(
'size' => '200px',
'size' => '200px',
),
'should_use_fluid_typography' => true,
'expected_output' => 'clamp(64px, 4rem + ((1vw - 7.68px) * 16.346), 200px)',
Expand Down

0 comments on commit 72a5feb

Please sign in to comment.