From b88cdbcfe156273df2f324cca48e9dce6a39a57a Mon Sep 17 00:00:00 2001 From: Heiko Becker Date: Mon, 10 Feb 2020 12:19:03 +0100 Subject: [PATCH] Fix chrome bookmarks test Summary: The urls were changed from http to https in the test's source files with 6d6d3c5b3e4be08ef13c8d0187a8d0a04bbd27d3 but not in the json test files. Test Plan: Built fine and the test passed with a clean build dir Reviewers: #plasma, yurchor Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D27281 --- .../tests/chrome-config-home/Chrome-Bookmarks-Sample.json | 6 +++--- .../chrome-config-home/Chrome-Bookmarks-SecondProfile.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-Sample.json b/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-Sample.json index 092ac37dc..3c2d60aad 100644 --- a/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-Sample.json +++ b/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-Sample.json @@ -7,7 +7,7 @@ "id": "4", "name": "some bookmark in bookmark bar", "type": "url", - "url": "http://somehost.com/" + "url": "https://somehost.com/" } ], "date_added": "12987182274941985", "date_modified": "12987182320843562", @@ -21,14 +21,14 @@ "id": "5", "name": "bookmark in other bookmarks", "type": "url", - "url": "http://otherbookmarks.com/" + "url": "https://otherbookmarks.com/" }, { "children": [ { "date_added": "12987182366305763", "id": "7", "name": "bookmark in somefolder", "type": "url", - "url": "http://somefolder.com/" + "url": "https://somefolder.com/" } ], "date_added": "12987182352136671", "date_modified": "12987182366305763", diff --git a/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-SecondProfile.json b/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-SecondProfile.json index 6087568fb..ab0c5b06d 100644 --- a/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-SecondProfile.json +++ b/runners/bookmarks/tests/chrome-config-home/Chrome-Bookmarks-SecondProfile.json @@ -15,6 +15,6 @@ "id": "7", "name": "bookmark in secondProfile", "type": "url", - "url": "http://secondprofile.com/" + "url": "https://secondprofile.com/" } ] } } }