mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-18 22:58:10 +01:00
[ticket/12486] Make assertion on the return to remove "Risky" from phpunit
PHPBB3-12486
This commit is contained in:
parent
e9dabb0903
commit
fe99e60d82
6
tests/cache/null_driver_test.php
vendored
6
tests/cache/null_driver_test.php
vendored
@ -35,14 +35,12 @@ class phpbb_cache_null_driver_test extends phpbb_database_test_case
|
||||
|
||||
public function test_purge()
|
||||
{
|
||||
// does nothing
|
||||
$this->driver->purge();
|
||||
$this->assertNull($this->driver->purge());
|
||||
}
|
||||
|
||||
public function test_destroy()
|
||||
{
|
||||
// does nothing
|
||||
$this->driver->destroy('foo');
|
||||
$this->assertNull($this->driver->destroy('foo'));
|
||||
}
|
||||
|
||||
public function test_cache_sql()
|
||||
|
Loading…
x
Reference in New Issue
Block a user