Fixed naming (phpci -> php-censor)

This commit is contained in:
Dmitry Khomutov 2016-07-22 12:14:10 +06:00
commit 62bf63a06e
20 changed files with 56 additions and 59 deletions

View file

@ -39,13 +39,13 @@ class BuildInterpolatorTest extends \PHPUnit_Framework_TestCase
{
$build = $this->prophesize('PHPCensor\\Model\\Build')->reveal();
$string = "Hello World";
$string = "Hello World";
$expectedOutput = "Hello World";
$this->testedInterpolator->setupInterpolationVars(
$build,
"/buildpath/",
"phpci.com"
"php-censor.local"
);
$actualOutput = $this->testedInterpolator->interpolate($string);