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:
parent
7c99e30920
commit
292908ca4a
2
tests/cache/cache_memory_test.php
vendored
2
tests/cache/cache_memory_test.php
vendored
@ -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]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user