Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-06-06 10:39:38 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-06 10:39:38 +0400
commit1f4a8b496999bdf8cbba31ffb541a82dad0d4ee2 (patch)
tree1caaa9510e3af68533b01e3e2f4932345ad8c090 /tests
parent985c8754adfb60e8be1f5596561ab6b8ff0cbd69 (diff)
Typo
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Core/ReleaseCheckListTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Core/ReleaseCheckListTest.php b/tests/PHPUnit/Core/ReleaseCheckListTest.php
index f4ad8b4cfd..37af5aa580 100644
--- a/tests/PHPUnit/Core/ReleaseCheckListTest.php
+++ b/tests/PHPUnit/Core/ReleaseCheckListTest.php
@@ -213,7 +213,7 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
$chmod = substr(decoct(fileperms($pathToTest)), -3);
$valid = array('775', '755');
$command = "find $pluginsPath -type d -exec chmod 755 {} +";
- $this->assertTrue(in_array($chmod, $valid), $valid,
+ $this->assertTrue(in_array($chmod, $valid),
"Some directories within plugins/ are not chmod 755. \n For example: $pathToTest \n\n".
"Run this command to set all directories to 755: \n$command\n");;
}