diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-07-03 10:28:37 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-07-03 12:54:49 +0200 |
commit | 208985dc1cccc043290175aa7952cb0768cd1010 (patch) | |
tree | 39d86c6f1f7b1f360abbb33d3abfc136c712e668 /tests/lib/app | |
parent | 8335c7a4e9df414321e4975280fc46a2b947f7ca (diff) | |
download | nextcloud-server-208985dc1cccc043290175aa7952cb0768cd1010.tar.gz nextcloud-server-208985dc1cccc043290175aa7952cb0768cd1010.zip |
fix wording
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 8d775d865f5..58f1c0a7a99 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'))), - [['ownCloud with a version lower or equal than 8.0.1 is required.'], ['@attributes' => ['max-version' => '8.0.1']]], + [['ownCloud 8.0.1 or lower is required.'], ['@attributes' => ['max-version' => '8.0.1']]], ); } |