From c363c3a9a5d504621dfa07355f35ffe10d75e2a5 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 30 Sep 2020 18:50:54 +0100 Subject: [PATCH] tests: Remove duplicate IPv6 zone ID URI parsing tests Signed-off-by: Philip Withnall --- glib/tests/uri.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/glib/tests/uri.c b/glib/tests/uri.c index adaa4066a..2be492f2f 100644 --- a/glib/tests/uri.c +++ b/glib/tests/uri.c @@ -681,17 +681,6 @@ static const UriAbsoluteTest absolute_tests[] = { { "scheme", NULL, "foo:bar._webdav._tcp.local", -1, "", NULL, NULL} }, - /* IPv6 scope ID parsing (both correct and incorrect) */ - { "http://[fe80::dead:beef%em1]/", G_URI_FLAGS_NONE, - { "http", NULL, "fe80::dead:beef%em1", -1, "/", NULL, NULL } - }, - { "http://[fe80::dead:beef%25em1]/", G_URI_FLAGS_NONE, - { "http", NULL, "fe80::dead:beef%em1", -1, "/", NULL, NULL } - }, - { "http://[fe80::dead:beef%10]/", G_URI_FLAGS_NONE, - { "http", NULL, "fe80::dead:beef%10", -1, "/", NULL, NULL } - }, - /* ".." past top */ { "http://example.com/..", G_URI_FLAGS_NONE, { "http", NULL, "example.com", -1, "/..", NULL, NULL }