diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-06-06 16:36:58 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-06-06 16:36:58 +0000 |
commit | 1620ec502c962557fa12fff2babd39eabe550493 (patch) | |
tree | 7588231912b6b6836cbd692c7c79978e867e4d54 | |
parent | 1abf0f3b3e487110c097cc444f8febb66921f7ea (diff) | |
download | pleroma-1620ec502c962557fa12fff2babd39eabe550493.tar.gz |
testsuite: update fixture URIs that were http
-rw-r--r-- | test/support/httpoison_mock.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/support/httpoison_mock.ex b/test/support/httpoison_mock.ex index 6e8336a93..befebad8a 100644 --- a/test/support/httpoison_mock.ex +++ b/test/support/httpoison_mock.ex @@ -4,7 +4,7 @@ defmodule HTTPoisonMock do def get(url, body \\ [], headers \\ []) def get( - "http://gerzilla.de/.well-known/webfinger?resource=acct:kaniini@gerzilla.de", + "https://gerzilla.de/.well-known/webfinger?resource=acct:kaniini@gerzilla.de", [Accept: "application/xrd+xml,application/jrd+json"], follow_redirect: true ) do @@ -16,7 +16,7 @@ defmodule HTTPoisonMock do end def get( - "http://framatube.org/.well-known/webfinger?resource=acct:framasoft@framatube.org", + "https://framatube.org/.well-known/webfinger?resource=acct:framasoft@framatube.org", [Accept: "application/xrd+xml,application/jrd+json"], follow_redirect: true ) do @@ -28,7 +28,7 @@ defmodule HTTPoisonMock do end def get( - "http://gnusocial.de/.well-known/webfinger?resource=acct:winterdienst@gnusocial.de", + "https://gnusocial.de/.well-known/webfinger?resource=acct:winterdienst@gnusocial.de", [Accept: "application/xrd+xml,application/jrd+json"], follow_redirect: true ) do |