diff options
author | Joas Schilling <coding@schilljs.com> | 2018-03-26 13:56:14 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-04-18 13:50:29 +0200 |
commit | 5f1f6330c9eadb450e4ca3fe6b5fff58ca00238d (patch) | |
tree | 4e4642e1285b7eabbe1acf429a94fa3dc602dacf /tests | |
parent | f7d6eb9ab66d829217fa808a3158b4759ffc9381 (diff) | |
download | nextcloud-server-5f1f6330c9eadb450e4ca3fe6b5fff58ca00238d.tar.gz nextcloud-server-5f1f6330c9eadb450e4ca3fe6b5fff58ca00238d.zip |
Show EOL warning in the update section
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Updater/VersionCheckTest.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lib/Updater/VersionCheckTest.php b/tests/lib/Updater/VersionCheckTest.php index 79c0a88dbf6..baf69bf056b 100644 --- a/tests/lib/Updater/VersionCheckTest.php +++ b/tests/lib/Updater/VersionCheckTest.php @@ -84,6 +84,7 @@ class VersionCheckTest extends \Test\TestCase { 'url' => 'https://download.owncloud.org/community/owncloud-8.0.4.zip', 'web' => 'http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html', 'autoupdater' => '0', + 'eol' => '1', ]; $this->config @@ -122,6 +123,7 @@ class VersionCheckTest extends \Test\TestCase { <url>https://download.owncloud.org/community/owncloud-8.0.4.zip</url> <web>http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html</web> <autoupdater>0</autoupdater> + <eol>1</eol> </owncloud>'; $this->updater ->expects($this->once()) @@ -179,6 +181,7 @@ class VersionCheckTest extends \Test\TestCase { 'url' => '', 'web' => '', 'autoupdater' => '', + 'eol' => '0', ]; $this->config |