summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-06-20 13:52:51 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-06-20 13:52:51 +0200
commit62e6de5df3093b92e2eadf13d5b3de644dd4446c (patch)
treeaddf371d279c6d6626cc94d9c14e437829677385 /tests
parent0194873c55d080883a0760166250af51a235593f (diff)
downloadnextcloud-server-62e6de5df3093b92e2eadf13d5b3de644dd4446c.tar.gz
nextcloud-server-62e6de5df3093b92e2eadf13d5b3de644dd4446c.zip
fix unit tests
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/App/DependencyAnalyzerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php
index 7882f6dd031..3f410444f47 100644
--- a/tests/lib/App/DependencyAnalyzerTest.php
+++ b/tests/lib/App/DependencyAnalyzerTest.php
@@ -204,9 +204,9 @@ class DependencyAnalyzerTest extends TestCase {
array(array(), array('@attributes' => array('min-version' => '8', 'max-version' => '8'))),
array(array(), array('@attributes' => array('min-version' => '8.0', 'max-version' => '8.0'))),
array(array(), array('@attributes' => array('min-version' => '8.0.2', 'max-version' => '8.0.2'))),
- array(array('ownCloud 8.0.3 or higher is required.'), array('@attributes' => array('min-version' => '8.0.3'))),
- array(array('ownCloud 9 or higher is required.'), array('@attributes' => array('min-version' => '9'))),
- [['ownCloud 8.0.1 or lower is required.'], ['@attributes' => ['max-version' => '8.0.1']]],
+ 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'))),
+ [['Server version 8.0.1 or lower is required.'], ['@attributes' => ['max-version' => '8.0.1']]],
);
}