Skip to content

Commit

Permalink
fix --filter=[core]
Browse files Browse the repository at this point in the history
  • Loading branch information
matyhtf committed Dec 13, 2024
1 parent db94b49 commit 4cfc5e1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion core-tests/src/coroutine/socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,12 @@ TEST(coroutine_socket, connect_with_dns) {
TEST(coroutine_socket, tcp6) {
coroutine::run([](void *arg) {
Socket sock(SW_SOCK_TCP6);
bool retval = sock.connect("::1", 80);
bool retval;
if (is_github_ci()) {
sock.connect("www.google.com", 443);
} else {
sock.connect("::1", 80);
}
ASSERT_EQ(retval, true);
ASSERT_EQ(sock.errCode, 0);
});
Expand Down

0 comments on commit 4cfc5e1

Please sign in to comment.