mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/9983] Rename test methods.
PHPBB3-9983
This commit is contained in:
parent
c3d1408c52
commit
90bd7858fd
3 changed files with 3 additions and 3 deletions
2
tests/cache/file_driver_test.php
vendored
2
tests/cache/file_driver_test.php
vendored
|
@ -67,7 +67,7 @@ class phpbb_cache_file_driver_test extends phpbb_cache_common_test_case
|
|||
rmdir($this->cache_dir);
|
||||
}
|
||||
|
||||
public function test_cache_sql_file()
|
||||
public function test_cache_sql()
|
||||
{
|
||||
global $db, $cache;
|
||||
$db = $this->new_dbal();
|
||||
|
|
2
tests/cache/null_driver_test.php
vendored
2
tests/cache/null_driver_test.php
vendored
|
@ -33,7 +33,7 @@ class phpbb_cache_null_driver_test extends phpbb_database_test_case
|
|||
$this->assertSame(false, $this->driver->get('key'));
|
||||
}
|
||||
|
||||
public function test_null_cache_sql()
|
||||
public function test_cache_sql()
|
||||
{
|
||||
global $db, $cache;
|
||||
$db = $this->new_dbal();
|
||||
|
|
2
tests/cache/redis_driver_test.php
vendored
2
tests/cache/redis_driver_test.php
vendored
|
@ -47,7 +47,7 @@ class phpbb_cache_redis_driver_test extends phpbb_cache_common_test_case
|
|||
$this->driver->purge();
|
||||
}
|
||||
|
||||
public function test_cache_sql_redis()
|
||||
public function test_cache_sql()
|
||||
{
|
||||
global $db, $cache;
|
||||
$db = $this->new_dbal();
|
||||
|
|
Loading…
Add table
Reference in a new issue