Skip to content

Commit 3e2a809

Browse files
committed
Add spaces in markdown headings
1 parent fb5520d commit 3e2a809

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

classes/reporter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ public function addToSection($section, $test, $filePath, $lineNumber, $codeLine)
137137
*/
138138
public function addSections() {
139139
foreach ($this->sectionBuffers as $section => $filePaths) {
140-
$this->add('#'.$section, 1, 1);
140+
$this->add('# '.$section, 1, 1);
141141
foreach ($filePaths as $filePath => $tests) {
142-
$this->add('####'.$filePath, 0, 1);
142+
$this->add('#### '.$filePath, 0, 1);
143143
foreach ($tests as $test => $lines) {
144144
$this->add('* '.$test, 0, 1);
145145
foreach ($lines as $line) {
@@ -171,4 +171,4 @@ public function onShutdown() {
171171
fclose($this->file);
172172
}
173173
}
174-
?>
174+
?>

0 commit comments

Comments
 (0)