From bcf2b0e2b63cf682a1c0e7f0e98795760b88c8b3 Mon Sep 17 00:00:00 2001 From: Dhilan007 Date: Wed, 2 Jul 2014 10:18:07 +0800 Subject: [PATCH] fixed no response in test case of curl. --- tests/cpp-tests/Classes/CurlTest/CurlTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cpp-tests/Classes/CurlTest/CurlTest.cpp b/tests/cpp-tests/Classes/CurlTest/CurlTest.cpp index 0da3d1df6d..5d8544dcd7 100644 --- a/tests/cpp-tests/Classes/CurlTest/CurlTest.cpp +++ b/tests/cpp-tests/Classes/CurlTest/CurlTest.cpp @@ -33,7 +33,7 @@ void CurlTest::onTouchesEnded(const std::vector& touches, Event *event) curl = curl_easy_init(); if (curl) { - curl_easy_setopt(curl, CURLOPT_URL, "google.com"); + curl_easy_setopt(curl, CURLOPT_URL, "baidu.com"); res = curl_easy_perform(curl); /* always cleanup */ curl_easy_cleanup(curl);