File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/Symfony/Bundle/WebServerBundle/Tests/DependencyInjection Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 12
12
namespace Symfony \Bundle \WebServerBundle \Tests \DependencyInjection ;
13
13
14
14
use PHPUnit \Framework \TestCase ;
15
+ use Symfony \Bridge \Monolog \Formatter \ConsoleFormatter ;
15
16
use Symfony \Bundle \WebServerBundle \DependencyInjection \WebServerExtension ;
16
17
use Symfony \Component \DependencyInjection \ContainerBuilder ;
17
18
@@ -26,6 +27,6 @@ public function testLoad()
26
27
$ this ->assertTrue ($ container ->hasDefinition ('web_server.command.server_start ' ));
27
28
$ this ->assertTrue ($ container ->hasDefinition ('web_server.command.server_stop ' ));
28
29
$ this ->assertTrue ($ container ->hasDefinition ('web_server.command.server_status ' ));
29
- $ this ->assertTrue ( $ container ->hasDefinition ('web_server.command.server_log ' ));
30
+ $ this ->assertSame ( class_exists (ConsoleFormatter::class), $ container ->hasDefinition ('web_server.command.server_log ' ));
30
31
}
31
32
}
You can’t perform that action at this time.
0 commit comments