We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55c6bae commit 7ca58f1Copy full SHA for 7ca58f1
tests/Functional/ProfilerTest.php
@@ -28,7 +28,7 @@ public function testShowProfiler(): void
28
$client->request('GET', '/_profiler/latest?panel=httplug');
29
$content = $client->getResponse()->getContent();
30
$this->assertStringContainsString(<<<HTML
31
- <div class="label httplug-stack-header-target"><span class="httplug-scheme">https://</span><span class="httplug-host">jsonplaceholder.typicode.com</span><span class="httplug-target">/posts/1</span></div>
32
- HTML, $content);
+ <div class="label httplug-stack-header-target"><span class="httplug-scheme">https://</span><span class="httplug-host">jsonplaceholder.typicode.com</span><span class="httplug-target">/posts/1</span></div>
+ HTML, str_replace(" ", "", $content));
33
}
34
0 commit comments