build fix

This commit is contained in:
Arsentiy Milchakov 2017-02-21 14:52:41 +03:00
parent 8f4fbad8ab
commit 7be8a52d66

View file

@ -45,7 +45,7 @@ bool RunSimpleHttpRequest(bool const needAuth, string const & url, string & resu
string MakeApiUrl(string const & func, initializer_list<pair<string, string>> const & params,
bool testing)
{
ASSERT(!params.empty(), ());
ASSERT_NOT_EQUAL(params.size(), 0, ());
ostringstream os;
os << kBookingApiBaseUrl << "." << func << "?";