From b6657df49cba3ffe7fc176193e60ec06694e80fb Mon Sep 17 00:00:00 2001 From: cxl Date: Mon, 15 Jan 2018 10:45:23 +0000 Subject: [PATCH] .autotest git-svn-id: svn://ultimatepp.org/upp/trunk@11692 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- autotest/HttpRequest/HttpRequest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest/HttpRequest/HttpRequest.cpp b/autotest/HttpRequest/HttpRequest.cpp index a727c60db..acc501310 100644 --- a/autotest/HttpRequest/HttpRequest.cpp +++ b/autotest/HttpRequest/HttpRequest.cpp @@ -64,7 +64,7 @@ CONSOLE_APP_MAIN } { HttpRequest r("http://httpbin.org/digest-auth/auth/usr/pwd"); - r.User("usr", "pwd"); + r.Digest("usr", "pwd"); String h = r.Execute(); DUMP(r.GetContent()); ASSERT(h.Find("\"authenticated\": true") >= 0);