From 4267a75cb5c3555319f17b35f5031f5590560345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Wed, 29 Nov 2017 18:50:42 -1000 Subject: [PATCH] Move to namespaced phpunit versions Debian-Bug: https://bugs.debian.org/882889 --- tests/JsonParserTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/JsonParserTest.php b/tests/JsonParserTest.php index d95ad52..2788ce4 100644 --- a/tests/JsonParserTest.php +++ b/tests/JsonParserTest.php @@ -9,11 +9,12 @@ * file that was distributed with this source code. */ +use PHPUnit\Framework\TestCase; use Seld\JsonLint\JsonParser; use Seld\JsonLint\ParsingException; use Seld\JsonLint\DuplicateKeyException; -class JsonParserTest extends PHPUnit_Framework_TestCase +class JsonParserTest extends TestCase { protected $json = array( '42', '42.3', '0.3', '-42', '-42.3', '-0.3',