Merge pull request #3685 from wallabag/fix-random-failing-test

Replace SO url by lemonde.fr to avoid random failing test
This commit is contained in:
Jérémy Benoist 2018-07-05 13:37:28 +00:00 committed by GitHub
commit 200392b462
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -128,14 +128,14 @@ class FirefoxControllerTest extends WallabagCoreTestCase
->get('doctrine.orm.entity_manager') ->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry') ->getRepository('WallabagCoreBundle:Entry')
->findByUrlAndUserId( ->findByUrlAndUserId(
'https://stackoverflow.com/questions/15017163/parser-for-exported-bookmarks-html-file-of-google-chrome-and-mozilla-in-java', 'https://www.lemonde.fr/disparitions/article/2018/07/05/le-journaliste-et-cineaste-claude-lanzmann-est-mort_5326313_3382.html',
$this->getLoggedInUserId() $this->getLoggedInUserId()
); );
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
$this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://stackoverflow.com is ok'); $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://www.lemonde.fr is ok');
$this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://stackoverflow.com is ok'); $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.lemonde.fr is ok');
$this->assertEmpty($content->getLanguage(), 'Language for https://stackoverflow.com is ok'); $this->assertNotEmpty($content->getLanguage(), 'Language for https://www.lemonde.fr is ok');
$createdAt = $content->getCreatedAt(); $createdAt = $content->getCreatedAt();
$this->assertSame('2013', $createdAt->format('Y')); $this->assertSame('2013', $createdAt->format('Y'));

View file

@ -39,13 +39,13 @@
}, },
{ {
"guid": "E385l9vZ_LVn", "guid": "E385l9vZ_LVn",
"title": "Parser for Exported Bookmarks HTML file of Google Chrome and Mozilla in Java", "title": "Le journaliste et cinéaste Claude Lanzmann est mort",
"index": 1, "index": 1,
"dateAdded": 1388166091544000, "dateAdded": 1388166091544000,
"lastModified": 1388166091545000, "lastModified": 1388166091545000,
"id": 5, "id": 5,
"type": "text/x-moz-place", "type": "text/x-moz-place",
"uri": "http://stackoverflow.com/questions/15017163/parser-for-exported-bookmarks-html-file-of-google-chrome-and-mozilla-in-java" "uri": "https://www.lemonde.fr/disparitions/article/2018/07/05/le-journaliste-et-cineaste-claude-lanzmann-est-mort_5326313_3382.html"
} }
] ]
}, },