diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-11-13 13:05:58 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-11-13 13:05:58 +0100 |
commit | 4a31f3b6a22b29bee5295aa3099fff79d137a00c (patch) | |
tree | e55b72cf2de57084c8b3de7bcbdf716dd6f48650 | |
parent | 092b0423427af6b58b8866030c73c67001608f7d (diff) | |
download | wallabag-4a31f3b6a22b29bee5295aa3099fff79d137a00c.tar.gz wallabag-4a31f3b6a22b29bee5295aa3099fff79d137a00c.tar.zst wallabag-4a31f3b6a22b29bee5295aa3099fff79d137a00c.zip |
Fix tests
-rw-r--r-- | tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php index a8ab53da..3a8f92e7 100644 --- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | |||
@@ -199,8 +199,8 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
199 | $authors = $content->getPublishedBy(); | 199 | $authors = $content->getPublishedBy(); |
200 | $this->assertSame('2017-04-05 19:26:13', $content->getPublishedAt()->format('Y-m-d H:i:s')); | 200 | $this->assertSame('2017-04-05 19:26:13', $content->getPublishedAt()->format('Y-m-d H:i:s')); |
201 | $this->assertSame('fr', $content->getLanguage()); | 201 | $this->assertSame('fr', $content->getLanguage()); |
202 | $this->assertSame('Raphaël Balenieri, correspondant à Pékin', $authors[0]); | 202 | $this->assertSame('Raphaël Balenieri', $authors[0]); |
203 | $this->assertSame('Frédéric Autran, correspondant à New York', $authors[1]); | 203 | $this->assertSame('Frédéric Autran', $authors[1]); |
204 | } | 204 | } |
205 | 205 | ||
206 | public function testPostNewOkUrlExist() | 206 | public function testPostNewOkUrlExist() |