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 b497228 commit d027f80
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 @@ -62,7 +62,7 @@ public function addFlashMessageWithMessageCallsEnqueue()
'Hello',
'',
FlashMessage::OK,
true
false
);

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

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

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

0 comments on commit d027f80

Please sign in to comment.