From fe937e2767023a856d038ffb8f35e2d0427c6255 Mon Sep 17 00:00:00 2001 From: cxl Date: Mon, 16 May 2016 07:07:57 +0000 Subject: [PATCH] .autotest git-svn-id: svn://ultimatepp.org/upp/trunk@9841 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- autotest/UrlInfo/UrlInfo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autotest/UrlInfo/UrlInfo.cpp b/autotest/UrlInfo/UrlInfo.cpp index 1a9794bf4..3f06eb556 100644 --- a/autotest/UrlInfo/UrlInfo.cpp +++ b/autotest/UrlInfo/UrlInfo.cpp @@ -16,7 +16,7 @@ CONSOLE_APP_MAIN URLCHECK(f.scheme, "http"); URLCHECK(f.host, "hostname"); URLCHECK(f.port, "9090"); - URLCHECK(f.user, "username"); + URLCHECK(f.username, "username"); URLCHECK(f.password, "password"); URLCHECK(f.path, "/path"); URLCHECK(f.query, "arg=value&aarg[]=item1&aarg[]=item2"); @@ -37,7 +37,7 @@ CONSOLE_APP_MAIN URLCHECK(f.scheme, ""); URLCHECK(f.host, "www.example.com"); URLCHECK(f.port, ""); - URLCHECK(f.user, ""); + URLCHECK(f.username, ""); URLCHECK(f.password, ""); URLCHECK(f.path, "/path"); URLCHECK(f.query, "googleguy=googley"); @@ -51,7 +51,7 @@ CONSOLE_APP_MAIN URLCHECK(f.scheme, "http"); URLCHECK(f.host, "najisto.centrum.cz"); URLCHECK(f.port, ""); - URLCHECK(f.user, ""); + URLCHECK(f.username, ""); URLCHECK(f.password, ""); URLCHECK(f.path, "/"); URLCHECK(f.query, "what=české sklo"); @@ -64,7 +64,7 @@ CONSOLE_APP_MAIN PRINT(f.scheme); PRINT(f.host); PRINT(f.port); - PRINT(f.user); + PRINT(f.username); PRINT(f.password); PRINT(f.path); PRINT(f.query);