Fixed invalid imports after class refactoring

This commit is contained in:
Alejandro Celaya
2020-05-08 10:29:24 +02:00
parent 9a78fd1a26
commit 06c59fe2dd
11 changed files with 20 additions and 17 deletions

View File

@@ -20,7 +20,7 @@ class ListTagsActionTest extends TestCase
public function setUp(): void
{
$this->tagService = $this->prophesize(\Shlinkio\Shlink\Core\Tag\TagServiceInterface::class);
$this->tagService = $this->prophesize(TagServiceInterface::class);
$this->action = new ListTagsAction($this->tagService->reveal());
}

View File

@@ -19,7 +19,7 @@ class UpdateTagActionTest extends TestCase
public function setUp(): void
{
$this->tagService = $this->prophesize(\Shlinkio\Shlink\Core\Tag\TagServiceInterface::class);
$this->tagService = $this->prophesize(TagServiceInterface::class);
$this->action = new UpdateTagAction($this->tagService->reveal());
}