Fix broken test

This commit is contained in:
Timothy Warren 2023-10-27 09:28:06 -04:00
parent 0e684736bd
commit 8e7b2a04fd
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');