1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 22:58:10 +01:00

[ticket/11224] Use assertNotEquals(false) instead of assertNotFalse()

assertNotFalse() is unavailable with the version of phpunit used with php
5.2

PHPBB3-11224
This commit is contained in:
Tristan Darricau 2014-05-15 01:49:07 +02:00
parent 7c99e30920
commit 292908ca4a

View File

@ -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]));
}
}
}