Skip to content

Commit

Permalink
Update curl test
Browse files Browse the repository at this point in the history
  • Loading branch information
jsharpe authored Jun 1, 2022
1 parent 014c2f9 commit e4e0201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/third_party/curl/curl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ int main(int argc, char* argv[])
curl_version_info_data* data = curl_version_info(CURLVERSION_NOW);

assertm(std::string(data->version) == std::string("7.74.0"), "The version of curl does not match the expected version");
assertm(std::string(data->ssl_version) == std::string("OpenSSL/1.1.1k"), "The version of openssl does not match the expected version");
assertm(std::string(data->ssl_version) == std::string("OpenSSL/1.1.1o"), "The version of openssl does not match the expected version");

return 0;
}

0 comments on commit e4e0201

Please sign in to comment.