summaryrefslogtreecommitdiff
path: root/tests/test_pair_tcp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pair_tcp.cpp')
-rw-r--r--tests/test_pair_tcp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_pair_tcp.cpp b/tests/test_pair_tcp.cpp
index 453daca..8ecfef5 100644
--- a/tests/test_pair_tcp.cpp
+++ b/tests/test_pair_tcp.cpp
@@ -28,12 +28,12 @@ int main (int argc, char *argv [])
void *sb = zmq_socket (ctx, ZMQ_PAIR);
assert (sb);
- int rc = zmq_bind (sb, "tcp://127.0.0.1:5555");
+ int rc = zmq_bind (sb, "tcp://127.0.0.1:5560");
assert (rc == 0);
void *sc = zmq_socket (ctx, ZMQ_PAIR);
assert (sc);
- rc = zmq_connect (sc, "tcp://127.0.0.1:5555");
+ rc = zmq_connect (sc, "tcp://127.0.0.1:5560");
assert (rc == 0);
bounce (sb, sc);