Skip to content

Commit

Permalink
chore: fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
asciito authored and github-actions[bot] committed Oct 23, 2023
1 parent 12a42a1 commit 34d47c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/ManageDriverCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@

artisan('manage:driver', ['action' => 'kill'])
->expectsTable(['PID', 'PORT'], collect($data)->map(function (string $value) {
$values = explode(" ", $value);
$values = explode(' ', $value);

return ['pid' => $values[0], 'port' => $values[1]];
}))
Expand Down

0 comments on commit 34d47c8

Please sign in to comment.