diff options
Diffstat (limited to 'tests/plugins/PluginIssoTest.php')
-rw-r--r-- | tests/plugins/PluginIssoTest.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/plugins/PluginIssoTest.php b/tests/plugins/PluginIssoTest.php index bdfab439..99477205 100644 --- a/tests/plugins/PluginIssoTest.php +++ b/tests/plugins/PluginIssoTest.php | |||
@@ -2,7 +2,7 @@ | |||
2 | namespace Shaarli\Plugin\Isso; | 2 | namespace Shaarli\Plugin\Isso; |
3 | 3 | ||
4 | use DateTime; | 4 | use DateTime; |
5 | use Shaarli\Bookmark\LinkDB; | 5 | use Shaarli\Bookmark\Bookmark; |
6 | use Shaarli\Config\ConfigManager; | 6 | use Shaarli\Config\ConfigManager; |
7 | use Shaarli\Plugin\PluginManager; | 7 | use Shaarli\Plugin\PluginManager; |
8 | 8 | ||
@@ -60,7 +60,7 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase | |||
60 | array( | 60 | array( |
61 | 'id' => 12, | 61 | 'id' => 12, |
62 | 'url' => $str, | 62 | 'url' => $str, |
63 | 'created' => DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $date), | 63 | 'created' => DateTime::createFromFormat(Bookmark::LINK_DATE_FORMAT, $date), |
64 | ) | 64 | ) |
65 | ) | 65 | ) |
66 | ); | 66 | ); |
@@ -85,7 +85,7 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase | |||
85 | } | 85 | } |
86 | 86 | ||
87 | /** | 87 | /** |
88 | * Test isso plugin when multiple links are displayed (shouldn't be displayed). | 88 | * Test isso plugin when multiple bookmarks are displayed (shouldn't be displayed). |
89 | */ | 89 | */ |
90 | public function testIssoMultipleLinks() | 90 | public function testIssoMultipleLinks() |
91 | { | 91 | { |
@@ -102,13 +102,13 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase | |||
102 | 'id' => 12, | 102 | 'id' => 12, |
103 | 'url' => $str, | 103 | 'url' => $str, |
104 | 'shorturl' => $short1 = 'abcd', | 104 | 'shorturl' => $short1 = 'abcd', |
105 | 'created' => DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $date1), | 105 | 'created' => DateTime::createFromFormat(Bookmark::LINK_DATE_FORMAT, $date1), |
106 | ), | 106 | ), |
107 | array( | 107 | array( |
108 | 'id' => 13, | 108 | 'id' => 13, |
109 | 'url' => $str . '2', | 109 | 'url' => $str . '2', |
110 | 'shorturl' => $short2 = 'efgh', | 110 | 'shorturl' => $short2 = 'efgh', |
111 | 'created' => DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $date2), | 111 | 'created' => DateTime::createFromFormat(Bookmark::LINK_DATE_FORMAT, $date2), |
112 | ), | 112 | ), |
113 | ) | 113 | ) |
114 | ); | 114 | ); |
@@ -136,7 +136,7 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase | |||
136 | 'id' => 12, | 136 | 'id' => 12, |
137 | 'url' => $str, | 137 | 'url' => $str, |
138 | 'shorturl' => $short1 = 'abcd', | 138 | 'shorturl' => $short1 = 'abcd', |
139 | 'created' => DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $date), | 139 | 'created' => DateTime::createFromFormat(Bookmark::LINK_DATE_FORMAT, $date), |
140 | ) | 140 | ) |
141 | ), | 141 | ), |
142 | 'search_term' => $str | 142 | 'search_term' => $str |