Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jflearn committed Sep 25, 2024
1 parent 746c5f8 commit 16c2e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/Controllers/RollupPageControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function testBlockDefaultRollupPageCSS() {

$this->assertStringContainsString( 'css/rolluppage.css', $response->getBody() );

RollupPage::config()->modify( 'block_default_rollup_page_css', true );
RollupPage::config()->set( 'block_default_rollup_page_css', true );

$response = $this->get( $rollupPage->Link() );

Expand All @@ -119,7 +119,7 @@ public function testBlockDefaultRollupPageJavascript() {

$this->assertStringContainsString( 'javascript/rolluppage.js', $response->getBody() );

RollupPage::config()->modify( 'block_default_rollup_page_js', true );
RollupPage::config()->set( 'block_default_rollup_page_js', true );

$response = $this->get( $rollupPage->Link() );

Expand Down

0 comments on commit 16c2e95

Please sign in to comment.