Skip to content

Commit 75e53d0

Browse files
committed
Fix pipeline 2
1 parent b941be3 commit 75e53d0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Neos.ContentRepository.Export/Tests/Behavior/Features/Import/Import.feature

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ Feature: As a user of the CR I want to export the event stream
6969
And I import the events.jsonl
7070

7171
And I expect a MigrationError with the message
72-
| Failed to read events. ContentStreamWasCreated is not expected in imported event stream. |
72+
"""
73+
Failed to read events. ContentStreamWasCreated is not expected in imported event stream.
74+
"""
7375

7476
Then I expect exactly 0 events to be published on stream with prefix "ContentStream:cs-imported-identifier"

Neos.ContentRepository.Export/src/Processors/EventStoreImportProcessor.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@ private static function extractContentStreamId(array $payload): ContentStreamId
195195
return ContentStreamId::fromString($payload['contentStreamId']);
196196
}
197197

198-
/** @phpstan-ignore-next-line */
198+
/**
199+
* @phpstan-ignore-next-line currently this private method is unused ... but it does no harm keeping it
200+
*/
199201
private function dispatch(Severity $severity, string $message, mixed ...$args): void
200202
{
201203
$renderedMessage = sprintf($message, ...$args);

0 commit comments

Comments
 (0)