Skip to content

Commit c195b2e

Browse files
committed
Added empty line to dumper output.
1 parent 65168f6 commit c195b2e

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/Helper/OutputHandler.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public function printSummary(OutputInterface $output, array $dumped_files) {
4545
foreach ($dumped_files as $file) {
4646
$output->writeln("$file");
4747
}
48+
$output->writeln('');
4849
}
4950

5051
}

tests/dcg/ApplicationTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public function testApplication() {
4141
' The following directories and files have been created or updated:',
4242
'–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––',
4343
' • foo.install',
44+
'',
4445
];
4546
static::assertEquals($expected_output, $output);
4647
static::assertEquals(0, $return);

tests/dcg/Generator/GeneratorBaseTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ protected function getExpectedDisplay() {
107107
$expected_display .= " The following directories and files have been created or updated:\n";
108108
$expected_display .= "–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––\n";
109109
$expected_display .= "$targets\n";
110+
$expected_display .= "\n";
110111
return $expected_display;
111112
}
112113

tests/dcg/Helper/OutputHandlerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public function testOutputHandler() {
3131
" • aaa/ddd\n",
3232
" • bbb/fff\n",
3333
" • bbb/eee/ggg\n",
34+
"\n",
3435
]);
3536
self::assertEquals($expected_output, $output->fetch());
3637

0 commit comments

Comments
 (0)