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

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjohndoh <roundcube@tehinterweb.co.uk>2019-10-13 16:51:16 +0300
committerAleksander Machniak <alec@alec.pl>2019-10-13 16:51:16 +0300
commit57960b1cabae437806d59e742b33ff393f2a18be (patch)
treea6dd77df1c758e5b7b6f28f42cd23c088e75d453 /tests
parent425724bb3582efe97e36c9b5ba9a1e78b86038a4 (diff)
add messages for in_array_nocase tests (#6957)
Diffstat (limited to 'tests')
-rw-r--r--tests/Framework/Bootstrap.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Framework/Bootstrap.php b/tests/Framework/Bootstrap.php
index 8d47debf1..eeac418eb 100644
--- a/tests/Framework/Bootstrap.php
+++ b/tests/Framework/Bootstrap.php
@@ -17,11 +17,11 @@ class Framework_Bootstrap extends PHPUnit_Framework_TestCase
$needle = 'test';
$result = in_array_nocase($needle, $haystack);
- $this->assertTrue($result, $title);
+ $this->assertTrue($result, "Invalid in_array_nocase() result (Array)");
$result = in_array_nocase($needle, null);
- $this->assertFalse($result, $title);
+ $this->assertFalse($result, "Invalid in_array_nocase() result (null)");
}
/**