Fixed integration unit test. Url parameter for curl should always be screened.

This commit is contained in:
Alex Zolotarev 2015-07-02 15:41:09 +03:00
parent 27f8353780
commit dfae79c28a

View file

@ -112,7 +112,7 @@ bool HTTPClientPlatformWrapper::RunHTTPRequest() {
cmd += "--data-binary @" + body_file_ + " ";
}
cmd += url_requested_;
cmd += "'" + url_requested_ + "'";
try {
// TODO(AlexZ): Do not store data in memory if received_file_ was specified.
server_response_ = RunCurl(cmd);