diff options
author | Loïc Hoguin <[email protected]> | 2016-11-24 21:32:39 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-11-24 21:32:39 +0100 |
commit | f2cfd93a6673c10a0b1f74e588abeebb40f296de (patch) | |
tree | 6dd9b81e8f20ec361c50039c132df6959ab5ceaf | |
parent | 68c6f7f3832c435d93f75e59428d0accbabf340a (diff) | |
download | ranch-f2cfd93a6673c10a0b1f74e588abeebb40f296de.tar.gz ranch-f2cfd93a6673c10a0b1f74e588abeebb40f296de.tar.bz2 ranch-f2cfd93a6673c10a0b1f74e588abeebb40f296de.zip |
Fix a test error on FreeBSD
-rw-r--r-- | test/acceptor_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/acceptor_SUITE.erl b/test/acceptor_SUITE.erl index b1810df..b208b36 100644 --- a/test/acceptor_SUITE.erl +++ b/test/acceptor_SUITE.erl @@ -102,7 +102,7 @@ misc_info(_) -> [ {{misc_info, act}, [ {pid, Pid2}, - {ip, {0,0,0,0}}, + {ip, _}, {port, Port2}, {num_acceptors, 2}, {max_connections, infinity}, %% Option was modified. @@ -115,7 +115,7 @@ misc_info(_) -> ]}, {{misc_info, ssl}, [ {pid, Pid3}, - {ip, {0,0,0,0}}, + {ip, _}, {port, Port3}, {num_acceptors, 3}, {max_connections, 1024}, @@ -128,7 +128,7 @@ misc_info(_) -> ]}, {{misc_info, tcp}, [ {pid, Pid1}, - {ip, {0,0,0,0}}, + {ip, _}, {port, Port1}, {num_acceptors, 1}, {max_connections, 1024}, |