Skip to content

Commit 87c51de

Browse files
committed
Fix failing tests on Windows
1 parent e72b2b8 commit 87c51de

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/EdgeCases/asciinema/in.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
<pre><code class="php">&lt;?php
2-
32
require 'vendor/autoload.php';
4-
53
$loop = React\EventLoop\Factory::create();
64
$socket = new React\Socket\Server($loop);
75
$http = new React\Http\Server($socket, $loop);
8-
96
$http-&gt;on('request', function ($request, $response) {
107
$response-&gt;writeHead(200, array('Content-Type' =&gt; 'text/plain'));
118
$response-&gt;end("Hello World\n");
129
});
13-
1410
$socket-&gt;listen(1337);
1511
$loop-&gt;run();
1612
</code></pre>

0 commit comments

Comments
 (0)