Skip to content

Commit 8e08ac7

Browse files
committed
Update PHPUnit to 6.0.
1 parent 35294d5 commit 8e08ac7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"composer/composer": "~1.0",
2323
"jakub-onderka/php-parallel-lint": "~0.8",
2424
"mikey179/vfsStream": "~1.2",
25-
"phpunit/phpunit": "~5.6",
25+
"phpunit/phpunit": "~6.0",
2626
"squizlabs/php_codesniffer": "~2.0"
2727
},
2828
"autoload": {

tests/DrupalInfoTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616
use Composer\Repository\WritableRepositoryInterface;
1717
use Composer\Script\Event;
1818
use DrupalComposer\Composer\DrupalInfo;
19+
use PHPUnit\Framework\TestCase;
1920

2021
/**
2122
* @coversDefaultClass \DrupalComposer\Composer\DrupalInfo
2223
*/
23-
class DrupalInfoTest extends \PHPUnit_Framework_TestCase
24+
class DrupalInfoTest extends TestCase
2425
{
2526
use InfoFileTrait;
2627

tests/Writer/FactoryTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
use DrupalComposer\Composer\Writer\Drupal;
77
use DrupalComposer\Composer\Writer\Drupal7;
88
use DrupalComposer\Composer\Writer\Factory;
9+
use PHPUnit\Framework\TestCase;
910

1011
/**
1112
* @coversDefaultClass \DrupalComposer\Composer\Writer\Factory
1213
*/
13-
class FactoryTest extends \PHPUnit_Framework_TestCase
14+
class FactoryTest extends TestCase
1415
{
1516
use InfoFileTrait;
1617

0 commit comments

Comments
 (0)