Skip to content

Commit 9a6ba22

Browse files
committed
wip
1 parent 38b5941 commit 9a6ba22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/MatchesSnapshots.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ public function markTestIncompleteIfSnapshotsHaveChanged()
4343
return;
4444
}
4545

46-
$formattedMessages = implode(PHP_EOL, array_map(fn (string $message) => "- {$message}", $this->snapshotChanges));
46+
$formattedMessages = implode(PHP_EOL, array_map(function (string $message) {
47+
return "- {$message}";
48+
}, $this->snapshotChanges));
4749

4850
$this->markTestIncomplete($formattedMessages);
4951
}

0 commit comments

Comments
 (0)