summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-07-25 16:13:34 +0200
committerJoas Schilling <coding@schilljs.com>2016-07-26 14:40:18 +0200
commit0fcc39cd8ec7ad1ecba62ef16bb7a884fb3e9377 (patch)
tree1980a506f87535237179b4cfe1d101e7ba3b05f7 /tests
parent352e24e703aae74c9486810e8c3550ae581c93cb (diff)
downloadnextcloud-server-0fcc39cd8ec7ad1ecba62ef16bb7a884fb3e9377.tar.gz
nextcloud-server-0fcc39cd8ec7ad1ecba62ef16bb7a884fb3e9377.zip
Translate the server version for nextcloud
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/App/DependencyAnalyzerTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php
index 3f410444f47..684a1b52259 100644
--- a/tests/lib/App/DependencyAnalyzerTest.php
+++ b/tests/lib/App/DependencyAnalyzerTest.php
@@ -16,7 +16,7 @@ use Test\TestCase;
class DependencyAnalyzerTest extends TestCase {
- /** @var Platform */
+ /** @var Platform|\PHPUnit_Framework_MockObject_MockObject */
private $platformMock;
/** @var IL10N */
@@ -206,6 +206,8 @@ class DependencyAnalyzerTest extends TestCase {
array(array(), array('@attributes' => array('min-version' => '8.0.2', 'max-version' => '8.0.2'))),
array(array('Server version 8.0.3 or higher is required.'), array('@attributes' => array('min-version' => '8.0.3'))),
array(array('Server version 9 or higher is required.'), array('@attributes' => array('min-version' => '9'))),
+ array(array('Server version 10 or higher is required.'), array('@attributes' => array('min-version' => '9.1'))),
+ array(array('Server version 11 or higher is required.'), array('@attributes' => array('min-version' => '9.2'))),
[['Server version 8.0.1 or lower is required.'], ['@attributes' => ['max-version' => '8.0.1']]],
);
}