summaryrefslogtreecommitdiff
path: root/src/util/test_url.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/test_url.c')
-rw-r--r--src/util/test_url.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/util/test_url.c b/src/util/test_url.c
index 3734da4e0..59a5e3fa7 100644
--- a/src/util/test_url.c
+++ b/src/util/test_url.c
@@ -49,10 +49,14 @@ main (int argc,
cf (TALER_urlencode ("foo bar "), "foo%20bar%20");
cf (TALER_urlencode ("% % "), "%25%20%25%20");
- cf (TALER_url_join ("https://taler.net/", "foo", NULL), "https://taler.net/foo");
- cf (TALER_url_join ("https://taler.net", "foo", NULL), "https://taler.net/foo");
- cf (TALER_url_join ("https://taler.net/", "/foo", NULL), "https://taler.net/foo");
- cf (TALER_url_join ("https://taler.net/", "/foo/", NULL), "https://taler.net/foo/");
+ cf (TALER_url_join ("https://taler.net/", "foo", NULL),
+ "https://taler.net/foo");
+ cf (TALER_url_join ("https://taler.net", "foo", NULL),
+ "https://taler.net/foo");
+ cf (TALER_url_join ("https://taler.net/", "/foo", NULL),
+ "https://taler.net/foo");
+ cf (TALER_url_join ("https://taler.net/", "/foo/", NULL),
+ "https://taler.net/foo/");
cf (TALER_url_join ("https://taler.net/", "foo", "x", "42", NULL),
"https://taler.net/foo?x=42");