diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-11-26 23:05:58 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-11-26 23:05:58 +0100 |
commit | 61873e3ded8dfba397b39aebd2322d0939c82caa (patch) | |
tree | a0cb54fb7223f23faa67bd90349a0981b9ef04e6 /tests/plugins | |
parent | 657f0e25ba2c6f39775a8386b62d7c662ae709f7 (diff) | |
parent | 90e5bd65c9d4a5d3d5cedfeaa1314f2a15df5227 (diff) | |
download | Shaarli-61873e3ded8dfba397b39aebd2322d0939c82caa.tar.gz Shaarli-61873e3ded8dfba397b39aebd2322d0939c82caa.tar.zst Shaarli-61873e3ded8dfba397b39aebd2322d0939c82caa.zip |
Merge pull request #355 from ArthurHoaro/redirector-url
URL encode links when a redirector is set
Diffstat (limited to 'tests/plugins')
-rw-r--r-- | tests/plugins/PlugQrcodeTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugins/PlugQrcodeTest.php b/tests/plugins/PlugQrcodeTest.php index 86dc7f29..c749fa86 100644 --- a/tests/plugins/PlugQrcodeTest.php +++ b/tests/plugins/PlugQrcodeTest.php | |||
@@ -30,7 +30,7 @@ class PlugQrcodeTest extends PHPUnit_Framework_TestCase | |||
30 | 'title' => $str, | 30 | 'title' => $str, |
31 | 'links' => array( | 31 | 'links' => array( |
32 | array( | 32 | array( |
33 | 'url' => $str, | 33 | 'real_url' => $str, |
34 | ) | 34 | ) |
35 | ) | 35 | ) |
36 | ); | 36 | ); |
@@ -39,7 +39,7 @@ class PlugQrcodeTest extends PHPUnit_Framework_TestCase | |||
39 | $link = $data['links'][0]; | 39 | $link = $data['links'][0]; |
40 | // data shouldn't be altered | 40 | // data shouldn't be altered |
41 | $this->assertEquals($str, $data['title']); | 41 | $this->assertEquals($str, $data['title']); |
42 | $this->assertEquals($str, $link['url']); | 42 | $this->assertEquals($str, $link['real_url']); |
43 | 43 | ||
44 | // plugin data | 44 | // plugin data |
45 | $this->assertEquals(1, count($link['link_plugin'])); | 45 | $this->assertEquals(1, count($link['link_plugin'])); |