mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Prevent side effects with BBCode::convert in testAutoLinking()
This commit is contained in:
parent
fedf29e023
commit
c5073e2036
1 changed files with 3 additions and 4 deletions
|
@ -116,12 +116,11 @@ class BBCodeTest extends MockedTest
|
|||
public function testAutoLinking($data, $assertHTML)
|
||||
{
|
||||
$output = BBCode::convert($data);
|
||||
$assert = '<a href="' . $data . '" target="_blank">' . $data . '</a>';
|
||||
if ($assertHTML) {
|
||||
$assert = '<a href="' . $data . '" target="_blank">' . $data . '</a>';
|
||||
$this->assertEquals($assert, $output);
|
||||
} else {
|
||||
$assert = $data;
|
||||
$this->assertNotEquals($assert, $output);
|
||||
}
|
||||
|
||||
$this->assertEquals($assert, $output);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue