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:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-11-22 10:22:10 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-27 15:34:41 +0300
commit3aa5f105fa2c763a57130c81a2e79a968a098777 (patch)
tree6eb13127ee3420fb331ea638a78956593cbf31a8 /apps/settings/tests
parentbfaca7fc78680f8efa4405d497a13a32e760b7ba (diff)
Fix more tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/settings/tests')
-rw-r--r--apps/settings/tests/Controller/MailSettingsControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/tests/Controller/MailSettingsControllerTest.php b/apps/settings/tests/Controller/MailSettingsControllerTest.php
index 8440df6ec4e..5015ca0a7a1 100644
--- a/apps/settings/tests/Controller/MailSettingsControllerTest.php
+++ b/apps/settings/tests/Controller/MailSettingsControllerTest.php
@@ -172,7 +172,7 @@ class MailSettingsControllerTest extends \Test\TestCase {
->method('createEMailTemplate')
->willReturn($emailTemplate);
$response = $this->mailController->sendTestMail();
- $this->assertSame(Http::STATUS_OK, $response->getStatus(), $response->getData());
+ $this->assertSame(Http::STATUS_OK, $response->getStatus());
}
}