summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Echo/tests/phpunit/cache/TitleLocalCacheTest.php')
-rw-r--r--Echo/tests/phpunit/cache/TitleLocalCacheTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Echo/tests/phpunit/cache/TitleLocalCacheTest.php b/Echo/tests/phpunit/cache/TitleLocalCacheTest.php
index fdd722d3..c046b6ba 100644
--- a/Echo/tests/phpunit/cache/TitleLocalCacheTest.php
+++ b/Echo/tests/phpunit/cache/TitleLocalCacheTest.php
@@ -3,7 +3,7 @@
use Wikimedia\TestingAccessWrapper;
/**
- * @covers EchoTitleLocalCache
+ * @covers \EchoTitleLocalCache
* @group Database
*/
class EchoTitleLocalCacheTest extends MediaWikiTestCase {
@@ -65,7 +65,7 @@ class EchoTitleLocalCacheTest extends MediaWikiTestCase {
$cache->add( 3 );
$cache->clearAll();
- $this->assertSame( null, $cache->get( 1 ), 'Cache was cleared' );
+ $this->assertNull( $cache->get( 1 ), 'Cache was cleared' );
// Lookups batch was cleared
$cache->expects( $this->exactly( 1 ) )->method( 'resolve' )