Skip to content

Commit 7ca58f1

Browse files
committed
Remove spaces in test
1 parent 55c6bae commit 7ca58f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Functional/ProfilerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function testShowProfiler(): void
2828
$client->request('GET', '/_profiler/latest?panel=httplug');
2929
$content = $client->getResponse()->getContent();
3030
$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);
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, str_replace(" ", "", $content));
3333
}
3434
}

0 commit comments

Comments
 (0)