Tests: Add nsurl insensitivity test for HTTPS scheme.

This commit is contained in:
Michael Drake 2017-03-27 16:01:47 +01:00
parent b024c0bcb5
commit 775687a79b
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@ static const struct test_pairs create_tests[] = {
/* test case insensitivity */
{ "HTTP://a/b", "http://a/b" },
{ "HTTPS://a/b", "https://a/b" },
{ "ftp://a/b", "ftp://a/b" },
{ "FTP://a/b", "ftp://a/b" },
{ "MAILTO:foo@bar", "mailto:foo@bar" },