Browse Source

Fix problem with InvalidPort test

yhirose 3 years ago
parent
commit
49d2e1f135
1 changed files with 2 additions and 1 deletions
  1. 2 1
      test/test.cc

+ 2 - 1
test/test.cc

@@ -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) {