aboutsummaryrefslogtreecommitdiffstats
path: root/apps/oauth2
diff options
context:
space:
mode:
authorrakekniven <mark.ziegler@rakekniven.de>2018-06-30 08:51:58 +0200
committerGitHub <noreply@github.com>2018-06-30 08:51:58 +0200
commitb24b5bd297c98f6a8d9c5d55749034e9507978a5 (patch)
treefe9869a411cdf53fc1ec0a4650ee33eeba1c0544 /apps/oauth2
parent8370111cf425340445a63bce46a0443dd6e28c2d (diff)
downloadnextcloud-server-b24b5bd297c98f6a8d9c5d55749034e9507978a5.tar.gz
nextcloud-server-b24b5bd297c98f6a8d9c5d55749034e9507978a5.zip
Update SettingsControllerTest.php
adapted test for grammar change of URL
Diffstat (limited to 'apps/oauth2')
-rw-r--r--apps/oauth2/tests/Controller/SettingsControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/oauth2/tests/Controller/SettingsControllerTest.php b/apps/oauth2/tests/Controller/SettingsControllerTest.php
index 942aa5c481b..4e4a69c9405 100644
--- a/apps/oauth2/tests/Controller/SettingsControllerTest.php
+++ b/apps/oauth2/tests/Controller/SettingsControllerTest.php
@@ -189,6 +189,6 @@ class SettingsControllerTest extends TestCase {
$result = $this->settingsController->addClient('test', 'invalidurl');
$this->assertEquals(Http::STATUS_BAD_REQUEST, $result->getStatus());
- $this->assertSame(['message' => 'Your redirect url needs to be a full url for example: https://yourdomain.com/path'], $result->getData());
+ $this->assertSame(['message' => 'Your redirect URL needs to be a full URL for example: https://yourdomain.com/path'], $result->getData());
}
}