diff options
author | Martin V <ndresx@gmail.com> | 2020-06-10 20:14:59 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-06-12 10:01:57 +0200 |
commit | b71628b633de3287fa83360a2019f0b7023b3aa3 (patch) | |
tree | fd5108cd97d6589bdb59b7638a09f036900c5fba /tests | |
parent | 8b4e79677508a1119bcd2463f549aa97b7442f48 (diff) | |
download | curl-b71628b633de3287fa83360a2019f0b7023b3aa3.tar.gz |
test1560: avoid possibly negative association in wording
Closes #5549
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/lib1560.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/libtest/lib1560.c b/tests/libtest/lib1560.c index ed1a2e4dd..d158534d7 100644 --- a/tests/libtest/lib1560.c +++ b/tests/libtest/lib1560.c @@ -138,13 +138,13 @@ static struct testcase get_parts_list[] ={ {"https://[::1]", "https | [11] | [12] | [13] | [::1] | [15] | / | [16] | [17]", 0, 0, CURLUE_OK }, - {"user:moo@ftp.example.com/color/#green?no-black", + {"user:moo@ftp.example.com/color/#green?no-red", "ftp | user | moo | [13] | ftp.example.com | [15] | /color/ | [16] | " - "green?no-black", + "green?no-red", CURLU_GUESS_SCHEME, 0, CURLUE_OK }, - {"ftp.user:moo@example.com/color/#green?no-black", + {"ftp.user:moo@example.com/color/#green?no-red", "http | ftp.user | moo | [13] | example.com | [15] | /color/ | [16] | " - "green?no-black", + "green?no-red", CURLU_GUESS_SCHEME, 0, CURLUE_OK }, #ifdef WIN32 {"file:/C:\\programs\\foo", @@ -157,25 +157,25 @@ static struct testcase get_parts_list[] ={ "file | [11] | [12] | [13] | [14] | [15] | C:\\programs\\foo | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, #endif - {"https://example.com/color/#green?no-black", + {"https://example.com/color/#green?no-red", "https | [11] | [12] | [13] | example.com | [15] | /color/ | [16] | " - "green?no-black", + "green?no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, - {"https://example.com/color/#green#no-black", + {"https://example.com/color/#green#no-red", "https | [11] | [12] | [13] | example.com | [15] | /color/ | [16] | " - "green#no-black", + "green#no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, - {"https://example.com/color/?green#no-black", + {"https://example.com/color/?green#no-red", "https | [11] | [12] | [13] | example.com | [15] | /color/ | green | " - "no-black", + "no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, - {"https://example.com/#color/?green#no-black", + {"https://example.com/#color/?green#no-red", "https | [11] | [12] | [13] | example.com | [15] | / | [16] | " - "color/?green#no-black", + "color/?green#no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, - {"https://example.#com/color/?green#no-black", + {"https://example.#com/color/?green#no-red", "https | [11] | [12] | [13] | example. | [15] | / | [16] | " - "com/color/?green#no-black", + "com/color/?green#no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, {"http://[ab.be:1]/x", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, |