Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Renard committed Dec 20, 2024
1 parent 7c28881 commit 5d0939c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function testSearchFormAfterMakingAQuery()

$this->assertSelectorExists('form.form-action-search .content-search-reset', 'After making a query, the search form should display the button to reset contents');
// With prettyUrls, the generated URL contains the page parameter set to 1
$this->assertSame($this->generateIndexUrl() . '?page=1', $crawler->filter('form.form-action-search .content-search-reset')->attr('href'));
$this->assertSame($this->generateIndexUrl().'?page=1', $crawler->filter('form.form-action-search .content-search-reset')->attr('href'));
}

public function testPaginationNotDisplayedWhenNotNeeded()
Expand Down

0 comments on commit 5d0939c

Please sign in to comment.