aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/libs/rdbms/database/DatabaseDomainTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/includes/libs/rdbms/database/DatabaseDomainTest.php')
-rw-r--r--tests/phpunit/includes/libs/rdbms/database/DatabaseDomainTest.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/phpunit/includes/libs/rdbms/database/DatabaseDomainTest.php b/tests/phpunit/includes/libs/rdbms/database/DatabaseDomainTest.php
index b1d4fadb7d84..6f3565d7b01f 100644
--- a/tests/phpunit/includes/libs/rdbms/database/DatabaseDomainTest.php
+++ b/tests/phpunit/includes/libs/rdbms/database/DatabaseDomainTest.php
@@ -8,7 +8,6 @@ use Wikimedia\Rdbms\DatabaseDomain;
class DatabaseDomainTest extends PHPUnit\Framework\TestCase {
use MediaWikiCoversValidator;
- use PHPUnit4And6Compat;
public static function provideConstruct() {
return [
@@ -34,7 +33,7 @@ class DatabaseDomainTest extends PHPUnit\Framework\TestCase {
*/
public function testConstruct( $db, $schema, $prefix, $id, $exception = false ) {
if ( $exception ) {
- $this->setExpectedException( InvalidArgumentException::class );
+ $this->expectException( InvalidArgumentException::class );
new DatabaseDomain( $db, $schema, $prefix );
return;
}
@@ -74,7 +73,7 @@ class DatabaseDomainTest extends PHPUnit\Framework\TestCase {
*/
public function testNewFromId( $id, $db, $schema, $prefix, $exception = false ) {
if ( $exception ) {
- $this->setExpectedException( InvalidArgumentException::class );
+ $this->expectException( InvalidArgumentException::class );
DatabaseDomain::newFromId( $id );
return;
}