diff --git a/lib/private/app/dependencyanalyzer.php b/lib/private/app/dependencyanalyzer.php
index f9289a08768cad5e0a7e762863abf156816ffe06..cfe69eab8aa08bb6160ce7059f831cc5a2b62903 100644
--- a/lib/private/app/dependencyanalyzer.php
+++ b/lib/private/app/dependencyanalyzer.php
@@ -300,7 +300,7 @@ class DependencyAnalyzer {
 		}
 		if (!is_null($maxVersion)) {
 			if ($this->compareBigger($this->platform->getOcVersion(), $maxVersion)) {
-				$missing[] = (string)$this->l->t('ownCloud with a version lower than %s is required.', $maxVersion);
+				$missing[] = (string)$this->l->t('ownCloud with a version lower or equal than %s is required.', $maxVersion);
 			}
 		}
 		return $missing;
diff --git a/tests/lib/app/dependencyanalyzer.php b/tests/lib/app/dependencyanalyzer.php
index 6393384057f4b2c6cd19c80ff560a97e5983f41c..8d775d865f56b7844d4790a9479ababd7655f635 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']]],
 		);
 	}