From 1508e93bfd55d1e0ca0f1d8f44b931d78fdec248 Mon Sep 17 00:00:00 2001 From: Aleksej Tikhanovich Date: Tue, 23 Apr 2024 13:11:10 +0200 Subject: [PATCH] fix: code style --- test/unit/model/Service/ConcurringSessionServiceTest.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/unit/model/Service/ConcurringSessionServiceTest.php b/test/unit/model/Service/ConcurringSessionServiceTest.php index 43c7699ac..15bac4a4e 100644 --- a/test/unit/model/Service/ConcurringSessionServiceTest.php +++ b/test/unit/model/Service/ConcurringSessionServiceTest.php @@ -275,7 +275,10 @@ public function testPauseActiveDeliveryExecutionsForUser() { $this->featureFlagChecker ->method('isEnabled') - ->withConsecutive(['FEATURE_FLAG_PAUSE_CONCURRENT_SESSIONS'], ['FEATURE_FLAG_MAINTAIN_RESTARTED_DELIVERY_EXECUTION_STATE']) + ->withConsecutive( + ['FEATURE_FLAG_PAUSE_CONCURRENT_SESSIONS'], + ['FEATURE_FLAG_MAINTAIN_RESTARTED_DELIVERY_EXECUTION_STATE'] + ) ->willReturn(true); $otherDeliveryResource = $this->createMock(core_kernel_classes_Resource::class);