Skip to content

Commit

Permalink
Remove stray commas
Browse files Browse the repository at this point in the history
  • Loading branch information
ockham committed Jul 18, 2024
1 parent 73d12b0 commit cf21ed0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/phpunit/tests/blocks/getActiveBlockVariation.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function test_get_active_block_variation_match_with_is_active() {
array(
'firstTestAttribute' => 1,
'secondTestAttribute' => 10,
),
)
);
$this->assertSame( 'variation-1', $active_variation['name'] );

Expand All @@ -72,7 +72,7 @@ public function test_get_active_block_variation_match_with_is_active() {
array(
'firstTestAttribute' => 2,
'secondTestAttribute' => 20,
),
)
);
$this->assertSame( 'variation-2', $active_variation['name'] );

Expand All @@ -81,7 +81,7 @@ public function test_get_active_block_variation_match_with_is_active() {
array(
'firstTestAttribute' => 1,
'secondTestAttribute' => 20,
),
)
);
$this->assertSame( 'variation-3', $active_variation['name'] );
}
Expand Down

0 comments on commit cf21ed0

Please sign in to comment.