mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
Fix problem with InvalidPort test
This commit is contained in:
parent
8191fd8e6c
commit
49d2e1f135
1 changed files with 2 additions and 1 deletions
|
@ -610,7 +610,8 @@ TEST(ConnectionErrorTest, InvalidPort) {
|
|||
|
||||
auto res = cli.Get("/");
|
||||
ASSERT_TRUE(!res);
|
||||
EXPECT_EQ(Error::Connection, res.error());
|
||||
EXPECT_TRUE(Error::Connection == res.error() ||
|
||||
Error::ConnectionTimeout == res.error());
|
||||
}
|
||||
|
||||
TEST(ConnectionErrorTest, Timeout_Online) {
|
||||
|
|
Loading…
Reference in a new issue