diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-05-15 01:49:07 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-15 01:50:44 +0200 |
commit | 292908ca4add9d6e31a35c7e620046b3f038e81d (patch) | |
tree | 154cf01e6fc42b8fae21d782d6a4477db58c2989 /tests/cache/cache_memory_test.php | |
parent | 7c99e309204d5647ae2eb246d5dc939e9e90c307 (diff) | |
download | forums-292908ca4add9d6e31a35c7e620046b3f038e81d.tar forums-292908ca4add9d6e31a35c7e620046b3f038e81d.tar.gz forums-292908ca4add9d6e31a35c7e620046b3f038e81d.tar.bz2 forums-292908ca4add9d6e31a35c7e620046b3f038e81d.tar.xz forums-292908ca4add9d6e31a35c7e620046b3f038e81d.zip |
[ticket/11224] Use assertNotEquals(false) instead of assertNotFalse()
assertNotFalse() is unavailable with the version of phpunit used with php
5.2
PHPBB3-11224
Diffstat (limited to 'tests/cache/cache_memory_test.php')
-rw-r--r-- | tests/cache/cache_memory_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cache/cache_memory_test.php b/tests/cache/cache_memory_test.php index 90c9f4413e..5a9f61f36e 100644 --- a/tests/cache/cache_memory_test.php +++ b/tests/cache/cache_memory_test.php @@ -103,7 +103,7 @@ class phpbb_cache_memory_test extends phpbb_database_test_case foreach ($sql_queries as $query) { - $this->assertNotFalse($this->cache->sql_load($query[0])); + $this->assertNotEquals(false, $this->cache->sql_load($query[0])); } } } |