1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Check for the actual warning description

This commit is contained in:
Alexey Kopytko 2018-10-26 12:17:38 +09:00 committed by Rob
parent 20107dbf77
commit aa6d138bdc

View file

@ -25,7 +25,8 @@ class FactoryTest extends TestCase
$ioMock = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$ioMock->expects($this->once())
->method("writeError");
->method("writeError")
->with($this->equalTo('<warning>You are running Composer with SSL/TLS protection disabled.</warning>'));
$config = $this
->getMockBuilder('Composer\Config')