fixed restart timesheet with tags with active record (#1622)

This commit is contained in:
Kevin Papst
2020-04-07 17:30:39 +02:00
committed by GitHub
parent 9e1e1a7a96
commit 5e7b0c7826
5 changed files with 39 additions and 20 deletions

View File

@@ -9,7 +9,6 @@
namespace App\Tests\Export\Renderer;
use App\Export\Renderer\HtmlRenderer;
use App\Export\Renderer\PDFRenderer;
use App\Export\Renderer\PdfRendererFactory;
use App\Repository\ProjectRepository;
@@ -32,7 +31,6 @@ class PdfRendererFactoryTest extends TestCase
$this->createMock(ProjectRepository::class)
);
/** @var HtmlRenderer $renderer */
$renderer = $sut->create('foo', 'bar.pdf.twig');
self::assertInstanceOf(PDFRenderer::class, $renderer);