Security update for Core, with self-updated composer
[yaffs-website] / vendor / psy / psysh / test / Psy / Test / Formatter / SignatureFormatterTest.php
index 0ceb5b477da9a1220baefff7b6510f8e58b1df47..73511fb1f57de9bb4bb1a46deae82499b6374d76 100644 (file)
@@ -14,7 +14,7 @@ namespace Psy\Test\Formatter;
 use Psy\Formatter\SignatureFormatter;
 use Psy\Reflection\ReflectionConstant;
 
-class SignatureFormatterTest extends \PHPUnit_Framework_TestCase
+class SignatureFormatterTest extends \PHPUnit\Framework\TestCase
 {
     const FOO = 'foo value';
     private static $bar = 'bar value';
@@ -34,13 +34,6 @@ class SignatureFormatterTest extends \PHPUnit_Framework_TestCase
     public function signatureReflectors()
     {
         return array(
-            array(
-                new \ReflectionClass($this),
-                "class Psy\Test\Formatter\SignatureFormatterTest "
-                . 'extends PHPUnit_Framework_TestCase implements '
-                . 'Countable, PHPUnit_Framework_SelfDescribing, '
-                . 'PHPUnit_Framework_Test',
-            ),
             array(
                 new \ReflectionFunction('implode'),
                 defined('HHVM_VERSION') ? 'function implode($arg1, $arg2 = null)' : 'function implode($glue, $pieces)',