Add httplib::Error to std::string function (#999)

Fixes: #978
This commit is contained in:
Gregor Jasny 2021-07-20 03:17:44 +02:00 committed by GitHub
parent 9f2064a8ed
commit ea2f69a0d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 2 deletions

View file

@ -542,7 +542,7 @@ TEST(ConnectionErrorTest, InvalidHostCheckResultErrorToString) {
ASSERT_TRUE(!res);
stringstream s;
s << "error code: " << res.error();
EXPECT_EQ("error code: 2", s.str());
EXPECT_EQ("error code: Connection (2)", s.str());
}
TEST(ConnectionErrorTest, InvalidPort) {