Skip to content
Snippets Groups Projects
Unverified Commit 4064010c authored by Morris Jobke's avatar Morris Jobke
Browse files

Revert "Fix tests"


This reverts commit 27a3c68d.

Signed-off-by: default avatarMorris Jobke <hey@morrisjobke.de>
parent bf7cbe32
No related branches found
No related tags found
No related merge requests found
......@@ -111,10 +111,7 @@ class AdminControllerTest extends TestCase {
$this->updateChecker
->expects($this->once())
->method('getUpdateState')
->willReturn([
'updateVersion' => '8.1.2',
'downloadLink' => 'https://downloads.nextcloud.org/server',
]);
->willReturn(['updateVersion' => '8.1.2']);
$params = [
'isNewVersionAvailable' => true,
......@@ -123,7 +120,6 @@ class AdminControllerTest extends TestCase {
'channels' => $channels,
'newVersionString' => '8.1.2',
'notify_groups' => 'admin',
'downloadLink' => 'https://downloads.nextcloud.org/server',
];
$expected = new TemplateResponse('updatenotification', 'admin', $params, '');
......@@ -168,7 +164,6 @@ class AdminControllerTest extends TestCase {
'channels' => $channels,
'newVersionString' => '',
'notify_groups' => 'admin',
'downloadLink' => '',
];
$expected = new TemplateResponse('updatenotification', 'admin', $params, '');
......
......@@ -74,7 +74,6 @@ class UpdateCheckerTest extends TestCase {
'updateAvailable' => true,
'updateVersion' => 'Nextcloud 123',
'updateLink' => 'https://docs.nextcloud.com/myUrl',
'downloadLink' => 'https://downloads.nextcloud.org/server',
];
$this->assertSame($expected, $this->updateChecker->getUpdateState());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment