diff options
author | ArthurHoaro <arthur@hoa.ro> | 2019-02-09 13:52:12 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2019-02-09 13:55:11 +0100 |
commit | 520d29578c57e476ece3bdd20c286d196b7b61b4 (patch) | |
tree | 6f221285ec8e30d6ddfb32e996949738ebaa410a /tests/plugins | |
parent | 905f8675a728841b03b300d2c7dc909a1c4f7f03 (diff) | |
download | Shaarli-520d29578c57e476ece3bdd20c286d196b7b61b4.tar.gz Shaarli-520d29578c57e476ece3bdd20c286d196b7b61b4.tar.zst Shaarli-520d29578c57e476ece3bdd20c286d196b7b61b4.zip |
Remove the redirector setting
Fixes #1239
Diffstat (limited to 'tests/plugins')
-rw-r--r-- | tests/plugins/PluginMarkdownTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/PluginMarkdownTest.php b/tests/plugins/PluginMarkdownTest.php index 5e7c02b0..9ddbc558 100644 --- a/tests/plugins/PluginMarkdownTest.php +++ b/tests/plugins/PluginMarkdownTest.php | |||
@@ -107,7 +107,7 @@ class PluginMarkdownTest extends \PHPUnit\Framework\TestCase | |||
107 | public function testReverseText2clickable() | 107 | public function testReverseText2clickable() |
108 | { | 108 | { |
109 | $text = 'stuff http://hello.there/is=someone#here otherstuff'; | 109 | $text = 'stuff http://hello.there/is=someone#here otherstuff'; |
110 | $clickableText = text2clickable($text, ''); | 110 | $clickableText = text2clickable($text); |
111 | $reversedText = reverse_text2clickable($clickableText); | 111 | $reversedText = reverse_text2clickable($clickableText); |
112 | $this->assertEquals($text, $reversedText); | 112 | $this->assertEquals($text, $reversedText); |
113 | } | 113 | } |