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 1f7ddcf commit 36519c2Copy full SHA for 36519c2
tests/Integration/StreamHandlerTest.php
@@ -32,7 +32,8 @@ public function streamAndWriteToFile($urls)
32
$stream = new StreamHandler($urls);
33
$stream->initiateConcurrentStreams()->start()->resume();
34
35
- foreach ($urls as $file => $url) {
+ $files = array_keys($urls);
36
+ foreach ($files as $file) {
37
$this->assertGreaterThan(0, filesize($file));
38
$this->assertStringContainsString('<!DOCTYPE html>', file_get_contents($file));
39
$this->assertStringContainsString('</html>', file_get_contents($file));
0 commit comments