Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6014ae8

Browse files
committedOct 19, 2023
???
1 parent 5114986 commit 6014ae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/Core/Bridge/Symfony/Bundle/Twig/ApiPlatformProfilerPanelTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ public function testDebugBarContentNotResourceClass()
8080
$client->enableProfiler();
8181
// Using html to get default Swagger UI
8282
$client->request('GET', '/');
83-
$this->assertEquals(200, $client->getResponse()->getStatusCode());
83+
$this->assertSame(200, $client->getResponse()->getStatusCode());
8484
/** @var string $token */
8585
$token = $client->getResponse()->headers->get('X-Debug-Token');
8686
$crawler = $client->request('GET', "/_wdt/$token");
8787

88-
$this->assertEquals(200, $client->getResponse()->getStatusCode());
88+
$this->assertSame(200, $client->getResponse()->getStatusCode());
8989
$block = $crawler->filter('div[class*=sf-toolbar-block-api_platform]');
9090

9191
// Check extra info content

0 commit comments

Comments
 (0)
Please sign in to comment.