Corrected a number of minor spelling errors.

Originally observed that "successful" was misspelled "succesfull" on the build view page. While correcting that, a number of other spelling errors were also corrected.
This commit is contained in:
Mark Robinson 2015-06-25 15:21:23 +01:00
commit 2ae9faf433
22 changed files with 28 additions and 28 deletions

View file

@ -78,7 +78,7 @@ class CreateBuildCommandTest extends \PHPUnit_Framework_TestCase
/**
* @expectedException \InvalidArgumentException
*/
public function testExecuteWithUnknowProjectId()
public function testExecuteWithUnknownProjectId()
{
$commandTester = $this->getCommandTester();
$commandTester->execute(array('projectId' => 2));

View file

@ -175,7 +175,7 @@ class InstallCommandTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('testedvalue', $this->config['b8']['database']['name']);
}
public function testDatabaseUserameConfig()
public function testDatabaseUserConfig()
{
$dialog = $this->getDialogHelperMock();
@ -243,7 +243,7 @@ class InstallCommandTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('test@phpci.com', $this->admin['mail']);
}
public function testAdminUserameConfig()
public function testAdminNameConfig()
{
$dialog = $this->getDialogHelperMock();

View file

@ -236,11 +236,11 @@ class EmailTest extends \PHPUnit_Framework_TestCase
/**
* @covers PHPUnit::execute
*/
public function testExecute_UniqueRecipientsWithCommiter()
public function testExecute_UniqueRecipientsWithCommitter()
{
$this->loadEmailPluginWithOptions(
array(
'commiter' => true,
'committer' => true,
'addresses' => array('test-receiver@example.com', 'committer@test.com')
)
);

View file

@ -15,7 +15,7 @@ use PHPCI\Plugin\Util\FilesPluginInformation;
class FilesPluginInformationTest extends \PHPUnit_Framework_TestCase
{
public function testGetInstalledPlugins_returnsObjectes()
public function testGetInstalledPlugins_returnsObjects()
{
$pluginDirPath = realpath(__DIR__ . "/../../../../PHPCI/Plugin/");
$test = FilesPluginInformation::newFromDir($pluginDirPath);