aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle/Controller
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-25 22:24:07 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-25 22:24:07 +0200
commit12d93e6896f2d99b6329b7979ee7b6d11e457c3a (patch)
tree5e67f445a652486259fa3a0d6579d7dea5683a81 /tests/Wallabag/ImportBundle/Controller
parent27acc6ddb8b0a1549a3f015171621e3056ef65d2 (diff)
downloadwallabag-12d93e6896f2d99b6329b7979ee7b6d11e457c3a.tar.gz
wallabag-12d93e6896f2d99b6329b7979ee7b6d11e457c3a.tar.zst
wallabag-12d93e6896f2d99b6329b7979ee7b6d11e457c3a.zip
Update Firefox file
With real data, the previous looks more than a Chrome converted file. Also, fix date conversion (hope so).
Diffstat (limited to 'tests/Wallabag/ImportBundle/Controller')
-rw-r--r--tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php b/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php
index 10fbc225..dea5b79c 100644
--- a/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php
+++ b/tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php
@@ -135,8 +135,8 @@ class FirefoxControllerTest extends WallabagCoreTestCase
135 $this->assertEmpty($content->getLanguage()); 135 $this->assertEmpty($content->getLanguage());
136 136
137 $createdAt = $content->getCreatedAt(); 137 $createdAt = $content->getCreatedAt();
138 $this->assertEquals('2011', $createdAt->format('Y')); 138 $this->assertEquals('2013', $createdAt->format('Y'));
139 $this->assertEquals('07', $createdAt->format('m')); 139 $this->assertEquals('12', $createdAt->format('m'));
140 } 140 }
141 141
142 public function testImportWallabagWithEmptyFile() 142 public function testImportWallabagWithEmptyFile()