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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-13 21:43:16 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-13 21:43:24 +0400
commit3d3c96352fbf55827c0af53c09335cff3a7be905 (patch)
tree4584eff79056e09dfb6e3434a931117662e612a0 /tests
parent0985cfe6770d64b146e7fb3e2b8bb67c24a51d7d (diff)
Fix git checkout command in travis.yml generator and correctly reference self:: instead of -> in IntegrationTestCase.php.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/PHPUnit/IntegrationTestCase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/IntegrationTestCase.php b/tests/PHPUnit/IntegrationTestCase.php
index db4104c3ca..bb371d8c48 100755
--- a/tests/PHPUnit/IntegrationTestCase.php
+++ b/tests/PHPUnit/IntegrationTestCase.php
@@ -318,7 +318,7 @@ abstract class IntegrationTestCase extends PHPUnit_Framework_TestCase
$processedPath = $path . '/processed/';
if (!is_writable($processedPath)) {
- $this->fail('To run the tests, you need to give write permissions to the following directory (create it if '
+ self::fail('To run the tests, you need to give write permissions to the following directory (create it if '
. 'it doesn\'t exist).<code><br/>mkdir ' . $processedPath . '<br/>chmod 777 ' . $processedPath
. '</code><br/>');
}