aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/shell/ShellTest.php
diff options
context:
space:
mode:
authorDaimona Eaytoy <daimona.wiki@gmail.com>2019-12-13 15:29:10 +0100
committerDaimona Eaytoy <daimona.wiki@gmail.com>2019-12-13 15:29:10 +0100
commit6365eaab8df533cc8e1a77e2d3f63ab0ed73ba5a (patch)
tree4a26f0577b7cf219656e1fb6d81a29de79c3f953 /tests/phpunit/includes/shell/ShellTest.php
parent3746d3dacbae4d70bf3bf290f3373c7499df221e (diff)
downloadmediawikicore-6365eaab8df533cc8e1a77e2d3f63ab0ed73ba5a.tar.gz
mediawikicore-6365eaab8df533cc8e1a77e2d3f63ab0ed73ba5a.zip
Autofix 94 PHPUnit 8 compat issues
Done automatically using the master version of MW codesniffer and running composer fix. Bug: T192167 Change-Id: If6b40f515fde32ab5eff074a90e821c30c791827
Diffstat (limited to 'tests/phpunit/includes/shell/ShellTest.php')
-rw-r--r--tests/phpunit/includes/shell/ShellTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/shell/ShellTest.php b/tests/phpunit/includes/shell/ShellTest.php
index 0dd88bb8685b..609e3c6ca9e7 100644
--- a/tests/phpunit/includes/shell/ShellTest.php
+++ b/tests/phpunit/includes/shell/ShellTest.php
@@ -11,7 +11,7 @@ use Wikimedia\TestingAccessWrapper;
class ShellTest extends MediaWikiTestCase {
public function testIsDisabled() {
- $this->assertInternalType( 'bool', Shell::isDisabled() ); // sanity
+ $this->assertIsBool( Shell::isDisabled() ); // sanity
}
/**