diff options
author | VirtualTam <virtualtam@flibidi.net> | 2016-01-02 20:09:29 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2016-01-02 20:09:29 +0100 |
commit | defc8a3f033a44602c598c2028a9ee3ee2a86d1d (patch) | |
tree | efb09f1c0d7b16e2c2dcb0313157d93ece6775b4 /tests/plugins/PluginWallabagTest.php | |
parent | 66d86ea521d737b1bc92b16b9c9b4126f545916c (diff) | |
parent | 938d9cce77ed5098dd69643795cb4014f3688b35 (diff) | |
download | Shaarli-defc8a3f033a44602c598c2028a9ee3ee2a86d1d.tar.gz Shaarli-defc8a3f033a44602c598c2028a9ee3ee2a86d1d.tar.zst Shaarli-defc8a3f033a44602c598c2028a9ee3ee2a86d1d.zip |
Merge pull request #417 from ArthurHoaro/wallabag-improve
Wallabag plugin improvement
Diffstat (limited to 'tests/plugins/PluginWallabagTest.php')
-rw-r--r-- | tests/plugins/PluginWallabagTest.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/plugins/PluginWallabagTest.php b/tests/plugins/PluginWallabagTest.php index 7cc83f4f..5d3a60e0 100644 --- a/tests/plugins/PluginWallabagTest.php +++ b/tests/plugins/PluginWallabagTest.php | |||
@@ -44,6 +44,8 @@ class PluginWallabagTest extends PHPUnit_Framework_TestCase | |||
44 | 44 | ||
45 | // plugin data | 45 | // plugin data |
46 | $this->assertEquals(1, count($link['link_plugin'])); | 46 | $this->assertEquals(1, count($link['link_plugin'])); |
47 | $this->assertNotFalse(strpos($link['link_plugin'][0], $str)); | 47 | $this->assertNotFalse(strpos($link['link_plugin'][0], urlencode($str))); |
48 | $this->assertNotFalse(strpos($link['link_plugin'][0], $GLOBALS['plugins']['WALLABAG_URL'])); | ||
48 | } | 49 | } |
49 | } | 50 | } |
51 | |||