Fixed deprecated code

This commit is contained in:
Dmitry Khomutov 2016-05-21 23:10:18 +06:00
commit e5e670da2c
5 changed files with 61 additions and 41 deletions

View file

@ -65,7 +65,7 @@ class CommandExecutorTest extends \PHPUnit_Framework_TestCase
public function testFindBinary_ReturnsPathInSpecifiedRoot()
{
$thisFileName = "CommandExecutorTest.php";
$returnValue = $this->testedExecutor->findBinary($thisFileName);
$returnValue = $this->testedExecutor->findBinary($thisFileName, true);
$this->assertEquals(__DIR__ . DIRECTORY_SEPARATOR . $thisFileName, $returnValue);
}