Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-12-04 19:58:35 +0300
committerBackportbot <backportbot-noreply@rullzer.com>2018-12-05 02:34:39 +0300
commitf4b582ec448c2e49fcaf47e4bd95d6b348df024a (patch)
treefc02e7328f679d50563e0f36ec431b3ac09cd872 /tests/Settings
parentec9d58b21d3204c34931b6f5be169f3dd22d6050 (diff)
Update casing of PHP inside method name
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests/Settings')
-rw-r--r--tests/Settings/Controller/CheckSetupControllerTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/Settings/Controller/CheckSetupControllerTest.php b/tests/Settings/Controller/CheckSetupControllerTest.php
index e85750f6b14..360bd27f254 100644
--- a/tests/Settings/Controller/CheckSetupControllerTest.php
+++ b/tests/Settings/Controller/CheckSetupControllerTest.php
@@ -155,7 +155,7 @@ class CheckSetupControllerTest extends TestCase {
'hasFreeTypeSupport',
'hasMissingIndexes',
'isSqliteUsed',
- 'isPhpMailerUsed',
+ 'isPHPMailerUsed',
'hasOpcacheLoaded',
'getAppDirsWithDifferentOwner',
'hasRecommendedPHPModules',
@@ -473,7 +473,7 @@ class CheckSetupControllerTest extends TestCase {
]);
$this->checkSetupController
->expects($this->once())
- ->method('isPhpMailerUsed')
+ ->method('isPHPMailerUsed')
->willReturn(false);
$this->checker
->expects($this->once())
@@ -531,7 +531,7 @@ class CheckSetupControllerTest extends TestCase {
'isSqliteUsed' => false,
'databaseConversionDocumentation' => 'http://docs.example.org/server/go.php?to=admin-db-conversion',
'missingIndexes' => [],
- 'isPhpMailerUsed' => false,
+ 'isPHPMailerUsed' => false,
'mailSettingsDocumentation' => 'https://server/index.php/settings/admin',
'isMemoryLimitSufficient' => true,
'appDirsWithDifferentOwner' => [],
@@ -541,7 +541,7 @@ class CheckSetupControllerTest extends TestCase {
$this->assertEquals($expected, $this->checkSetupController->check());
}
- public function testIsPhpMailerUsed() {
+ public function testIsPHPMailerUsed() {
$checkSetupController = $this->getMockBuilder('\OC\Settings\Controller\CheckSetupController')
->setConstructorArgs([
'settings',
@@ -571,8 +571,8 @@ class CheckSetupControllerTest extends TestCase {
->with('mail_smtpmode', 'smtp')
->will($this->returnValue('not-php'));
- $this->assertTrue($this->invokePrivate($checkSetupController, 'isPhpMailerUsed'));
- $this->assertFalse($this->invokePrivate($checkSetupController, 'isPhpMailerUsed'));
+ $this->assertTrue($this->invokePrivate($checkSetupController, 'isPHPMailerUsed'));
+ $this->assertFalse($this->invokePrivate($checkSetupController, 'isPHPMailerUsed'));
}
public function testGetCurlVersion() {