Fix test
This commit is contained in:
parent
d058275723
commit
e55f38cc98
|
@ -141,7 +141,7 @@ class Status extends BaseFactory
|
||||||
// Add the title to text / html if set
|
// Add the title to text / html if set
|
||||||
if (!empty($item['title'])) {
|
if (!empty($item['title'])) {
|
||||||
$text .= $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);
|
$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]',
|
'text' => '[emoji=https://fedi.underscore.world/emoji/custom/custom/heart_nb.png]:heart_nb:[/emoji]',
|
||||||
],
|
],
|
||||||
'task-12900-multiple-paragraphs' => [
|
'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',
|
'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' => [
|
'task-12900-header-with-paragraphs' => [
|
||||||
|
|
|
@ -64,7 +64,7 @@ class StatusTest extends FixtureTest
|
||||||
->toArray();
|
->toArray();
|
||||||
|
|
||||||
self::assertStringStartsWith('item_title', $status['text']);
|
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