Skip to content

Commit

Permalink
temp : fix the typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ta5r committed Sep 24, 2024
1 parent ea3ab2a commit 8e9f8e3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions tests/unit/CoreQuoteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,12 @@ className
$this->assertEquals(
[
'value' => '<p>Sample Quote</p>',
'textAlign' => 'center', // Previously untested.
'layout' => wp_json_encode( // Previously untested.
[
'type' => 'flex',
'flexWrap' => 'nowrap',
]
),
],
$block['attributes'],
);
Expand Down Expand Up @@ -488,13 +493,13 @@ className
$this->assertEquals(
[
'value' => '<p>Sample Quote</p>',
'layout' => wp_json_encode( // Previously untested.
'layout' => wp_json_encode(
[
'type' => 'flex',
'flexWrap' => 'nowrap',
]
),
'textAlign' => 'center',
'textAlign' => 'center', // Previously untested.
],
$block['attributes'],
);
Expand Down

0 comments on commit 8e9f8e3

Please sign in to comment.