diff options
author | James D. Forrester <jforrester@wikimedia.org> | 2020-01-09 15:48:34 -0800 |
---|---|---|
committer | James D. Forrester <jforrester@wikimedia.org> | 2020-01-10 14:17:13 -0800 |
commit | 0958a0bce4bd8390c97ce2042f1eb04df8308293 (patch) | |
tree | a1f9eb5d647b1150c3188f698129e3eb7a0c1393 /tests/phpunit/includes/api/ApiUnblockTest.php | |
parent | 41f8acfd52b36759f7a10196f36af5e2d9f81427 (diff) | |
download | mediawikicore-0958a0bce4bd8390c97ce2042f1eb04df8308293.tar.gz mediawikicore-0958a0bce4bd8390c97ce2042f1eb04df8308293.zip |
Coding style: Auto-fix MediaWiki.Usage.IsNull.IsNull
Change-Id: I90cfe8366c0245c9c67e598d17800684897a4e27
Diffstat (limited to 'tests/phpunit/includes/api/ApiUnblockTest.php')
-rw-r--r-- | tests/phpunit/includes/api/ApiUnblockTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/api/ApiUnblockTest.php b/tests/phpunit/includes/api/ApiUnblockTest.php index 0ab2ddf5e6ba..f0931517f28b 100644 --- a/tests/phpunit/includes/api/ApiUnblockTest.php +++ b/tests/phpunit/includes/api/ApiUnblockTest.php @@ -35,7 +35,7 @@ class ApiUnblockTest extends ApiTestCase { $result = $block->insert(); $this->assertNotFalse( $result, 'Could not insert block' ); $blockFromDB = DatabaseBlock::newFromID( $result['id'] ); - $this->assertTrue( !is_null( $blockFromDB ), 'Could not retrieve block' ); + $this->assertTrue( $blockFromDB !== null, 'Could not retrieve block' ); } private function getBlockFromParams( array $params ) { |