mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 15:57:45 +02: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:
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)
|
foreach ($sql_queries as $query)
|
||||||
{
|
{
|
||||||
$this->assertNotFalse($this->cache->sql_load($query[0]));
|
$this->assertNotEquals(false, $this->cache->sql_load($query[0]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user