aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cache
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/cache_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cache/cache_test.php b/tests/cache/cache_test.php
index 336c009ebe..c5f5fac88c 100644
--- a/tests/cache/cache_test.php
+++ b/tests/cache/cache_test.php
@@ -90,7 +90,7 @@ class phpbb_cache_test extends phpbb_database_test_case
$result = $db->sql_query($sql, 300);
$first_result = $db->sql_fetchrow($result);
- $this->assertFileExists($this->cache_dir . 'sql_' . md5($sql) . '.php');
+ $this->assertFileExists($this->cache_dir . 'sql_' . md5(preg_replace('/[\n\r\s\t]+/', ' ', $sql)) . '.php');
$sql = "SELECT * FROM phpbb_config
WHERE config_name = 'foo'";