From cf21ed0f55b373f208c4061339e440462a3cbe9d Mon Sep 17 00:00:00 2001 From: Bernie Reiter Date: Tue, 28 May 2024 17:50:10 +0200 Subject: [PATCH] Remove stray commas --- tests/phpunit/tests/blocks/getActiveBlockVariation.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/tests/blocks/getActiveBlockVariation.php b/tests/phpunit/tests/blocks/getActiveBlockVariation.php index a90ff5150ead6..5de2fa09d986d 100644 --- a/tests/phpunit/tests/blocks/getActiveBlockVariation.php +++ b/tests/phpunit/tests/blocks/getActiveBlockVariation.php @@ -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'] ); @@ -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'] ); @@ -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'] ); }