Skip to content

Commit

Permalink
Merge pull request #43 from gabriel-caruso/phpunit
Browse files Browse the repository at this point in the history
Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase
  • Loading branch information
othillo authored Nov 20, 2017
2 parents 1380d55 + 1132d1c commit a7f7f4e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"require-dev": {
"predis/predis": "~0.8",
"symfony/expression-language": "~2.4",
"phpunit/phpunit": "^4.8"
"phpunit/phpunit": "^4.8.35"
},
"suggest": {
"predis/predis": "To use the PredisCollection to persist toggles in redis",
Expand Down
4 changes: 2 additions & 2 deletions test/Qandidate/Toggle/Serializer/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

namespace Qandidate\Toggle\Serializer;

use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase as BaseTestCase;

class TestCase extends PHPUnit_Framework_TestCase
class TestCase extends BaseTestCase
{
}
4 changes: 2 additions & 2 deletions test/Qandidate/Toggle/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

namespace Qandidate\Toggle;

use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase as BaseTestCase;

class TestCase extends PHPUnit_Framework_TestCase
class TestCase extends BaseTestCase
{
}

0 comments on commit a7f7f4e

Please sign in to comment.