Skip to content

Commit 62e7f0f

Browse files
driesvintsgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 534937f commit 62e7f0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/Helpers/MdToSafeHtmlTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
test('converts markdown to safe html', function () {
88
$body = 'Hello, World! ![](image.png).';
99

10-
expect(md_to_html($body))->toBe('<p>Hello, World! <img src="image.png" alt="" />.</p>' . "\n");
10+
expect(md_to_html($body))->toBe('<p>Hello, World! <img src="image.png" alt="" />.</p>'."\n");
1111
});
1212

1313
test('prevents unsafe links', function () {
1414
$body = "[Unsafe Link](javascript:alert('Hello'))";
1515

16-
expect(md_to_html($body))->toBe('<p><a>Unsafe Link</a></p>' . "\n");
16+
expect(md_to_html($body))->toBe('<p><a>Unsafe Link</a></p>'."\n");
1717
});

0 commit comments

Comments
 (0)