Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewserong committed Sep 16, 2022
1 parent 36bf56f commit ce07ae8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/phpunit/tests/theme/wpGetGlobalStylesheet.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,11 +275,11 @@ public function test_should_enqueue_stored_styles() {
" border-style: solid;\n",
"}\n",
)
)
),
),
wp_styles()->registered['core-block-supports']->extra['after'],
'Registered styles with handle of "core-block-supports" do not match expected value from Style Engine store.'
);
);
} else {
// In production versions of WordPress, `defaults-constants.php` will set SCRIPT_DEBUG to false.
$this->assertEquals(
Expand All @@ -300,13 +300,13 @@ public function test_should_enqueue_stored_styles() {
" color: grey;\n",
" height: 90px;\n",
" border-style: dotted;\n",
"}\n"
"}\n",
)
)
),
),
wp_styles()->registered['wp-style-engine-my-styles']->extra['after'],
'Registered styles with handle of "core-block-supports" do not match expected value from Style Engine store.'
);
);
} else {
// In production versions of WordPress, `defaults-constants.php` will set SCRIPT_DEBUG to false.
$this->assertEquals(
Expand Down

0 comments on commit ce07ae8

Please sign in to comment.