diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-07-02 16:37:39 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-07-02 16:37:39 +0200 |
commit | 8335c7a4e9df414321e4975280fc46a2b947f7ca (patch) | |
tree | bd6ef4a2021fa2028dfa2c5124339d856c6d2612 /tests/lib/app | |
parent | b21d4a55f2efb4cd376ce475968895e6d4800ded (diff) | |
download | nextcloud-server-8335c7a4e9df414321e4975280fc46a2b947f7ca.tar.gz nextcloud-server-8335c7a4e9df414321e4975280fc46a2b947f7ca.zip |
Correct wording
If a max version of 8.0.1 has been specified the message should indicate that 8.0.1 is also supported.
Diffstat (limited to 'tests/lib/app')
-rw-r--r-- | tests/lib/app/dependencyanalyzer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/app/dependencyanalyzer.php b/tests/lib/app/dependencyanalyzer.php index 6393384057f..8d775d865f5 100644 --- a/tests/lib/app/dependencyanalyzer.php +++ b/tests/lib/app/dependencyanalyzer.php @@ -198,7 +198,7 @@ class DependencyAnalyzer extends \PHPUnit_Framework_TestCase { 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'))), - array(array('ownCloud with a version lower than 8.0.1 is required.'), array('@attributes' => array('max-version' => '8.0.1'))), + [['ownCloud with a version lower or equal than 8.0.1 is required.'], ['@attributes' => ['max-version' => '8.0.1']]], ); } |