Update SettingsControllerTest.php

adapted test for grammar change of URL
This commit is contained in:
rakekniven 2018-06-30 08:51:58 +02:00 committed by GitHub
parent 8370111cf4
commit b24b5bd297
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
}