From 76180db6b326f8c87aef5b3eded9463432ce8d82 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 27 Jul 2012 15:52:03 -0400 Subject: Always encode the "id" attribute in URIs Per recommendation of the spec. https://bugs.freedesktop.org/show_bug.cgi?id=52606 --- tests/uri-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/uri-test.c b/tests/uri-test.c index 16480f6..4780e4e 100644 --- a/tests/uri-test.c +++ b/tests/uri-test.c @@ -510,7 +510,7 @@ test_uri_build_with_attributes (CuTest *tc) CuAssertTrue (tc, strstr (string, "object=The%20Label") != NULL); CuAssertTrue (tc, strstr (string, "object-type=data") != NULL); - CuAssertTrue (tc, strstr (string, "id=HELLO") != NULL); + CuAssertTrue (tc, strstr (string, "id=%48%45%4c%4c%4f") != NULL); free (string); p11_kit_uri_free (uri); -- cgit v1.1