[ticket/12486] Make assertion on the return to remove "Risky" from phpunit

PHPBB3-12486
This commit is contained in:
Joas Schilling 2014-05-05 18:21:28 +02:00
parent e9dabb0903
commit fe99e60d82

View file

@ -35,14 +35,12 @@ class phpbb_cache_null_driver_test extends phpbb_database_test_case
public function test_purge() public function test_purge()
{ {
// does nothing $this->assertNull($this->driver->purge());
$this->driver->purge();
} }
public function test_destroy() public function test_destroy()
{ {
// does nothing $this->assertNull($this->driver->destroy('foo'));
$this->driver->destroy('foo');
} }
public function test_cache_sql() public function test_cache_sql()