Skip to content

Commit

Permalink
Set storeInSession to false in func. tests as it is CLI context
Browse files Browse the repository at this point in the history
  • Loading branch information
sfroemkenjw committed Mar 5, 2024
1 parent 43cbc8a commit 8470fa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Functional/Helper/MessageHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function addFlashMessageWithMessageCallsEnqueue(): void
'Hello',
'',
AbstractMessage::OK,
true
false
);

$this->subject->addFlashMessage('Hello');
Expand All @@ -79,7 +79,7 @@ public function addFlashMessageWithMessageAndSubjectCallsEnqueue(): void
'Hello',
'Subject',
AbstractMessage::OK,
true
false
);

$this->subject->addFlashMessage('Hello', 'Subject');
Expand All @@ -99,7 +99,7 @@ public function addFlashMessageWithAllArgumentsCallsEnqueue(): void
'Hello',
'Subject',
AbstractMessage::ERROR,
true
false
);

$this->subject->addFlashMessage('Hello', 'Subject', AbstractMessage::ERROR);
Expand Down

0 comments on commit 8470fa2

Please sign in to comment.