summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2022-06-13 14:13:15 +0200
committerAlexander Larsson <alexander.larsson@gmail.com>2022-06-16 13:49:45 +0200
commitb1083a4c4151c01e8d76e40939576d343fa37a71 (patch)
tree4929096f05df7de36f04d49c4f6db0c8d3527976 /tests
parentd4508905a5aba2c7d09069c9851af02ae90c2f20 (diff)
downloadflatpak-b1083a4c4151c01e8d76e40939576d343fa37a71.tar.gz
http utils: Make a generic FlatpakHttpSession instead of SoupSession
Its still just a SoupSession, but now the implementation is more centralized and can be something else down the line.
Diffstat (limited to 'tests')
-rw-r--r--tests/httpcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/httpcache.c b/tests/httpcache.c
index 57f92b04..095b732f 100644
--- a/tests/httpcache.c
+++ b/tests/httpcache.c
@@ -3,7 +3,7 @@
int
main (int argc, char *argv[])
{
- g_autoptr(SoupSession) session = flatpak_create_soup_session (PACKAGE_STRING);
+ g_autoptr(FlatpakHttpSession) session = flatpak_create_http_session (PACKAGE_STRING);
GError *error = NULL;
const char *url, *dest;
int flags = 0;