aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/diff
diff options
context:
space:
mode:
authorReedy <reedy@wikimedia.org>2021-11-21 16:23:11 +0000
committerReedy <reedy@wikimedia.org>2021-11-21 16:42:31 +0000
commit6e296116426e42aa57f8fa907158aa2552438cac (patch)
tree9f5ffe9d79c7f431e0314c401511d8440cece419 /tests/phpunit/includes/diff
parent8965bd36e0dae178376ff678a436ab96101fb4a9 (diff)
downloadmediawikicore-6e296116426e42aa57f8fa907158aa2552438cac.tar.gz
mediawikicore-6e296116426e42aa57f8fa907158aa2552438cac.zip
Remove or replace usages of "sanity"
Still some more to go... Bug: T254646 Change-Id: Ia117f01e443c35b4765f3275cab4f2707e1be96f
Diffstat (limited to 'tests/phpunit/includes/diff')
-rw-r--r--tests/phpunit/includes/diff/DifferenceEngineTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/diff/DifferenceEngineTest.php b/tests/phpunit/includes/diff/DifferenceEngineTest.php
index bfb20d96663b..c4630a52a454 100644
--- a/tests/phpunit/includes/diff/DifferenceEngineTest.php
+++ b/tests/phpunit/includes/diff/DifferenceEngineTest.php
@@ -341,9 +341,9 @@ class DifferenceEngineTest extends MediaWikiIntegrationTestCase {
}
$page = $this->getNonExistingTestPage( 'Page1' );
- $this->assertTrue( $this->editPage( $page, 'Edit1' )->isGood(), 'Sanity: edited a page' );
+ $this->assertTrue( $this->editPage( $page, 'Edit1' )->isGood(), 'edited a page' );
$rev1 = $page->getRevisionRecord();
- $this->assertTrue( $this->editPage( $page, 'Edit2' )->isGood(), 'Sanity: edited a page' );
+ $this->assertTrue( $this->editPage( $page, 'Edit2' )->isGood(), 'edited a page' );
$rev2 = $page->getRevisionRecord();
$diffEngine = new DifferenceEngine( $this->context );