mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Fix test
This commit is contained in:
parent
d058275723
commit
e55f38cc98
3 changed files with 3 additions and 3 deletions
|
@ -141,7 +141,7 @@ class Status extends BaseFactory
|
|||
// Add the title to text / html if set
|
||||
if (!empty($item['title'])) {
|
||||
$text .= $item['title'] . ' ';
|
||||
$title = sprintf("[h4]%s[/h4]\n", $item['title']);
|
||||
$title = sprintf("[h4]%s[/h4]", $item['title']);
|
||||
}
|
||||
|
||||
$statusnetHtml = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($title . ($item['raw-body'] ?? $item['body'])), BBCode::TWITTER_API);
|
||||
|
|
|
@ -259,7 +259,7 @@ Karl Marx - Die ursprüngliche Akkumulation
|
|||
'text' => '[emoji=https://fedi.underscore.world/emoji/custom/custom/heart_nb.png]:heart_nb:[/emoji]',
|
||||
],
|
||||
'task-12900-multiple-paragraphs' => [
|
||||
'expectedHTML' => '<h1>Header</h1><ul class="listbullet" style="list-style-type:circle;"><li>One</li><li>Two</li></ul><p>This is a paragraph<br>with a line feed.</p><p>Second Chapter</p>',
|
||||
'expectedHTML' => "<h1>Header</h1><ul class=\"listbullet\" style=\"list-style-type:circle;\"><li>One</li><li>Two</li></ul><p>This is a paragraph<br>with a line feed.</p><p>Second Chapter</p>",
|
||||
'text' => '[h1]Header[/h1][ul][*]One[*]Two[/ul]\n\nThis is a paragraph\nwith a line feed.\n\nSecond Chapter',
|
||||
],
|
||||
'task-12900-header-with-paragraphs' => [
|
||||
|
|
|
@ -64,7 +64,7 @@ class StatusTest extends FixtureTest
|
|||
->toArray();
|
||||
|
||||
self::assertStringStartsWith('item_title', $status['text']);
|
||||
self::assertStringStartsWith('<h4>item_title</h4><br>perspiciatis impedit voluptatem', $status['friendica_html']);
|
||||
self::assertStringStartsWith('<h4>item_title</h4><p>perspiciatis impedit voluptatem', $status['friendica_html']);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue