Skip to content

Commit 7a30649

Browse files
authored
Merge pull request #45 from DavidPrevot/phpunit6
Move to namespaced phpunit versions
2 parents 5828ab2 + 4267a75 commit 7a30649

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/JsonParserTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
use PHPUnit\Framework\TestCase;
1213
use Seld\JsonLint\JsonParser;
1314
use Seld\JsonLint\ParsingException;
1415
use Seld\JsonLint\DuplicateKeyException;
1516

16-
class JsonParserTest extends PHPUnit_Framework_TestCase
17+
class JsonParserTest extends TestCase
1718
{
1819
protected $json = array(
1920
'42', '42.3', '0.3', '-42', '-42.3', '-0.3',

0 commit comments

Comments
 (0)