aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/cache/cache_memory_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cache/cache_memory_test.php b/tests/cache/cache_memory_test.php
index 90c9f4413e..5a9f61f36e 100644
--- a/tests/cache/cache_memory_test.php
+++ b/tests/cache/cache_memory_test.php
@@ -103,7 +103,7 @@ class phpbb_cache_memory_test extends phpbb_database_test_case
foreach ($sql_queries as $query)
{
- $this->assertNotFalse($this->cache->sql_load($query[0]));
+ $this->assertNotEquals(false, $this->cache->sql_load($query[0]));
}
}
}