From 0db13229418cead7fe6d7c6e18789b39fb9ae639 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 21 May 2020 02:18:41 +0000 Subject: Bump friendsofsymfony/jsrouting-bundle from 2.5.4 to 2.6.0 Bumps [friendsofsymfony/jsrouting-bundle](https://github.com/FriendsOfSymfony/FOSJsRoutingBundle) from 2.5.4 to 2.6.0. - [Release notes](https://github.com/FriendsOfSymfony/FOSJsRoutingBundle/releases) - [Changelog](https://github.com/FriendsOfSymfony/FOSJsRoutingBundle/blob/master/CHANGELOG.md) - [Commits](https://github.com/FriendsOfSymfony/FOSJsRoutingBundle/compare/2.5.4...2.6.0) Signed-off-by: dependabot-preview[bot] --- composer.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.lock b/composer.lock index 1cfd1615..4575a98f 100644 --- a/composer.lock +++ b/composer.lock @@ -1773,16 +1773,16 @@ }, { "name": "friendsofsymfony/jsrouting-bundle", - "version": "2.5.4", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/FriendsOfSymfony/FOSJsRoutingBundle.git", - "reference": "7dfd2165c1170a73e5929e70fb80ef57f5539869" + "reference": "9deaf916760ce1d64cf46460473260b02751cee5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfSymfony/FOSJsRoutingBundle/zipball/7dfd2165c1170a73e5929e70fb80ef57f5539869", - "reference": "7dfd2165c1170a73e5929e70fb80ef57f5539869", + "url": "https://api.github.com/repos/FriendsOfSymfony/FOSJsRoutingBundle/zipball/9deaf916760ce1d64cf46460473260b02751cee5", + "reference": "9deaf916760ce1d64cf46460473260b02751cee5", "shasum": "" }, "require": { @@ -1831,7 +1831,7 @@ "javascript", "routing" ], - "time": "2020-04-15T09:21:31+00:00" + "time": "2020-05-20T09:38:45+00:00" }, { "name": "friendsofsymfony/oauth-server-bundle", -- cgit v1.2.3 From 9dfceff022df2258d1e8317d91d6207d426d625c Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 25 May 2020 05:50:11 +0200 Subject: Fix test --- tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php b/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php index 963759b1..15646d55 100644 --- a/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php @@ -121,7 +121,7 @@ class PinboardControllerTest extends WallabagCoreTestCase $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://ma.ttias.be is ok'); $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://ma.ttias.be is ok'); - $this->assertNull($content->getLanguage(), 'Language for https://ma.ttias.be is null'); + $this->assertNotEmpty($content->getLanguage(), 'Language for https://ma.ttias.be is ok'); $tags = $content->getTags(); $this->assertContains('foot', $tags, 'It includes the "foot" tag'); -- cgit v1.2.3