We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bd1aa7 commit 7437a56Copy full SHA for 7437a56
test/test.cpp
@@ -730,7 +730,7 @@ TEST(InvalidSSLTest, HttpGetRequestMustReturnErrorForAnInvalidSsl) {
730
731
ASSERT_FALSE(response.succeed) << "HTTP Request failed";
732
ASSERT_EQ(response.statusCode, 0) << "HTTP Status Code is not 0";
733
- ASSERT_EQ(response.errorMessage, "SSL peer certificate or SSH remote key was not OK") << "HTTP Error Message is invalid";
+ ASSERT_FALSE(response.errorMessage.empty()) << "HTTP Error Message is empty";
734
}
735
736
TEST(InvalidSSLTest, HttpGetRequestMustBeCompletedSuccessfullyForAnInvalidSslIfIgnoreSslErrorsFieldSetTrue) {
0 commit comments