diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2017-10-17 11:24:01 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2017-10-17 11:24:01 +0200 |
commit | e964f83f28c49402678478774a2d1f62b02205d8 (patch) | |
tree | 04bb5f96751a0b3fb47364073ff794f592d19a64 /tests | |
parent | be71ce32dcbe1856fe6e28cdfdfecfb399c6fb12 (diff) | |
download | nextcloud-server-e964f83f28c49402678478774a2d1f62b02205d8.tar.gz nextcloud-server-e964f83f28c49402678478774a2d1f62b02205d8.zip |
fix url
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Settings/Controller/CheckSetupControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Settings/Controller/CheckSetupControllerTest.php b/tests/Settings/Controller/CheckSetupControllerTest.php index d0093cc8a9a..74eee3fea41 100644 --- a/tests/Settings/Controller/CheckSetupControllerTest.php +++ b/tests/Settings/Controller/CheckSetupControllerTest.php @@ -467,7 +467,7 @@ class CheckSetupControllerTest extends TestCase { $client->expects($this->at(0)) ->method('get') - ->with('https://www.owncloud.org/', []) + ->with('https://nextcloud.com/', []) ->will($this->throwException($exception)); $this->clientService->expects($this->once()) @@ -501,7 +501,7 @@ class CheckSetupControllerTest extends TestCase { $client->expects($this->at(0)) ->method('get') - ->with('https://www.owncloud.org/', []) + ->with('https://nextcloud.com/', []) ->will($this->throwException($exception)); $this->clientService->expects($this->once()) |