Fix broken test
timw4mail/HummingBirdAnimeClient/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2023-10-27 09:28:06 -04:00
parent 1d90f62c77
commit d2931af020
1 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,8 @@ namespace Aviat\AnimeClient\Tests;
use Aviat\AnimeClient\RoutingBase;
use JetBrains\PhpStorm\ArrayShape;
class ConcreteRoutingBase extends RoutingBase {}
/**
* @internal
*/
@ -50,7 +52,7 @@ final class RoutingBaseTest extends AnimeClientTestCase
],
]);
$routingBase = new RoutingBase($this->container);
$routingBase = new ConcreteRoutingBase($this->container);
$this->assertSame($path, $routingBase->path(), 'Path is invalid');
$this->assertSame($segments, $routingBase->segments(), 'Segments array is invalid');