Skip to content

Commit 2ae7b1c

Browse files
Andreas Frömericanhazstring
authored andcommitted
Remove flexible heredoc for 7.2
Signed-off-by: Andreas Frömer <[email protected]>
1 parent 728bc84 commit 2ae7b1c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

test/Integration/SystemCtlTest.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ public function testCreateUnitFromUnsupportedSuffixShouldRaiseException(): void
107107
public function testGetServices(): void
108108
{
109109
$output = <<<EOT
110-
PLACEHOLDER STUFF
111-
superservice.service Active running
112-
awesomeservice.service Active running
113-
nonservice.timer Active running
114-
PLACEHOLDER STUFF
115-
116-
EOT;
110+
PLACEHOLDER STUFF
111+
superservice.service Active running
112+
awesomeservice.service Active running
113+
nonservice.timer Active running
114+
PLACEHOLDER STUFF
115+
116+
EOT;
117117

118118
$command = $this->prophesize(CommandInterface::class);
119119
$command->getOutput()->willReturn($output);
@@ -132,13 +132,13 @@ public function testGetServices(): void
132132
public function testGetTimers(): void
133133
{
134134
$output = <<<EOT
135-
PLACEHOLDER STUFF
136-
superservice.service Active running
137-
awesomeservice.timer Active running
138-
nonservice.timer Active running
139-
PLACEHOLDER STUFF
140-
141-
EOT;
135+
PLACEHOLDER STUFF
136+
superservice.service Active running
137+
awesomeservice.timer Active running
138+
nonservice.timer Active running
139+
PLACEHOLDER STUFF
140+
141+
EOT;
142142

143143
$command = $this->prophesize(CommandInterface::class);
144144
$command->getOutput()->willReturn($output);

0 commit comments

Comments
 (0)