From 9efb767cfbf7cd43a253a45ed5b27b2dd352e371 Mon Sep 17 00:00:00 2001 From: LinaKind Date: Tue, 18 Feb 2025 15:56:30 +0000 Subject: [PATCH] Fix the build by fixing lint error https://github.com/elifesciences/issues/issues/9169 --- test/Controller/BrowseControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Controller/BrowseControllerTest.php b/test/Controller/BrowseControllerTest.php index 780048a6..bc9ec30a 100644 --- a/test/Controller/BrowseControllerTest.php +++ b/test/Controller/BrowseControllerTest.php @@ -22,7 +22,7 @@ public function it_displays_the_browse_page() $crawler = $client->request('GET', $this->getUrl()); - $this->assertStatusCodeIs200($client, $crawler); + $this->assertStatusCodeIs200($client, $crawler); $this->assertSame('0 results found', trim($crawler->filter('.message-bar')->text())); }