Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Oct 25, 2022
2 parents cb106db + a956e85 commit dc5e945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/HelpersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Spatie\Browsershot\Helpers;

it('can determine if a string starts with a substring', function(string $haystack, $needle, $expectedResult) {
it('can determine if a string starts with a substring', function (string $haystack, $needle, $expectedResult) {
expect(Helpers::stringStartsWith($haystack, $needle))->toBe($expectedResult);
})->with([
['https://spatie.be', 'https://', true],
Expand Down

0 comments on commit dc5e945

Please sign in to comment.