diff options
Diffstat (limited to 'tests/phpunit/integration/includes/StubGlobalUserTest.php')
-rw-r--r-- | tests/phpunit/integration/includes/StubGlobalUserTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/phpunit/integration/includes/StubGlobalUserTest.php b/tests/phpunit/integration/includes/StubGlobalUserTest.php index c467d8461036..63aead2fd6f8 100644 --- a/tests/phpunit/integration/includes/StubGlobalUserTest.php +++ b/tests/phpunit/integration/includes/StubGlobalUserTest.php @@ -81,7 +81,7 @@ class StubGlobalUserTest extends MediaWikiIntegrationTestCase { $this->assertInstanceOf( StubGlobalUser::class, $wgUser, - 'Sanity check: $wgUser should be a StubGlobalUser at the start of the test' + 'Check: $wgUser should be a StubGlobalUser at the start of the test' ); $this->assertSame( 12345, @@ -103,7 +103,7 @@ class StubGlobalUserTest extends MediaWikiIntegrationTestCase { $this->assertInstanceOf( StubGlobalUser::class, $wgUser, - 'Sanity check: $wgUser should be a StubGlobalUser at the start of the test' + 'Check: $wgUser should be a StubGlobalUser at the start of the test' ); $this->assertSame( 12345, @@ -129,7 +129,7 @@ class StubGlobalUserTest extends MediaWikiIntegrationTestCase { $this->assertInstanceOf( StubGlobalUser::class, $wgUser, - 'Sanity check: $wgUser should be a StubGlobalUser at the start of the test' + 'Check: $wgUser should be a StubGlobalUser at the start of the test' ); $wgUser->mId = 2000; $this->assertInstanceOf( |