Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix linting
  • Loading branch information
andrewserong committed Sep 16, 2022
commit ce07ae8bd527c9424026e64c698dea994fd72480
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