We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e8f5f3 commit 265c4d7Copy full SHA for 265c4d7
1 file changed
tests/e2e/server.php
@@ -2,6 +2,7 @@
2
3
require_once __DIR__.'/../../vendor/autoload.php';
4
5
+use Utopia\DI\Container;
6
use Utopia\Http\Adapter\FPM\Server;
7
use Utopia\Http\Http;
8
use Utopia\Tests\TestPlatform;
@@ -15,6 +16,6 @@
15
16
$platform = new TestPlatform();
17
$platform->init('http');
18
-$server = new Server();
19
+$server = new Server(new Container());
20
$http = new Http($server, 'UTC');
21
$http->start();
0 commit comments