From efb7fbd979cadee2747fce2dd38abf8c15248938 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Fri, 8 Nov 2024 16:18:41 +0100 Subject: [PATCH] TASK: Remove obsolete `I run the event migration for workspace :workspace` --- .../Tests/Behavior/Bootstrap/FeatureContext.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Neos.ContentRepository.LegacyNodeMigration/Tests/Behavior/Bootstrap/FeatureContext.php b/Neos.ContentRepository.LegacyNodeMigration/Tests/Behavior/Bootstrap/FeatureContext.php index 1812c6cbeb..415bf6d8b0 100644 --- a/Neos.ContentRepository.LegacyNodeMigration/Tests/Behavior/Bootstrap/FeatureContext.php +++ b/Neos.ContentRepository.LegacyNodeMigration/Tests/Behavior/Bootstrap/FeatureContext.php @@ -91,14 +91,13 @@ public function iHaveTheFollowingNodeDataRows(TableNode $nodeDataRows): void public function iRunTheEventMigrationWithRootnodeMapping(string $rootNodeMapping): void { $rootNodeTypeMapping = RootNodeTypeMapping::fromArray(json_decode($rootNodeMapping, true)); - $this->iRunTheEventMigration(null, $rootNodeTypeMapping); + $this->iRunTheEventMigration($rootNodeTypeMapping); } /** * @When I run the event migration - * @When I run the event migration for workspace :workspace */ - public function iRunTheEventMigration(string $workspace = null, RootNodeTypeMapping $rootNodeTypeMapping = null): void + public function iRunTheEventMigration(RootNodeTypeMapping $rootNodeTypeMapping = null): void { $nodeTypeManager = $this->currentContentRepository->getNodeTypeManager(); $propertyMapper = $this->getObject(PropertyMapper::class);