diff --git a/modules/opd_presentations/src/PresentationCounter.php b/modules/opd_presentations/src/PresentationCounter.php deleted file mode 100644 index 28836bf34..000000000 --- a/modules/opd_presentations/src/PresentationCounter.php +++ /dev/null @@ -1,13 +0,0 @@ -createPresentation( - events: [ - Paragraph::create(['type' => 'event']), - ], - ); - - $counter = $this->container->get(PresentationCounter::class); - - $this->assertSame( - actual: $counter->getCount(), - expected: 1, - ); - } - - /** - * @param ParagraphInterface[] $events - */ - private function createPresentation(array $events): NodeInterface { - return $this->createNode([ - 'field_events' => $events, - 'type' => 'presentation', - ]); - } - -}