aboutsummaryrefslogtreecommitdiff
path: root/tests/trantest.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/trantest.h')
-rw-r--r--tests/trantest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/trantest.h b/tests/trantest.h
index fe6e5431..173c6b45 100644
--- a/tests/trantest.h
+++ b/tests/trantest.h
@@ -29,8 +29,8 @@ void
trantest_init(trantest *tt, const char *addr)
{
(void) snprintf(tt->addr, sizeof(tt->addr), "%s", addr);
- So(nng_open(&tt->reqsock, NNG_PROTO_REQ) == 0);
- So(nng_open(&tt->repsock, NNG_PROTO_REP) == 0);
+ So(nng_req_open(&tt->reqsock) == 0);
+ So(nng_rep_open(&tt->repsock) == 0);
tt->tran = nni_tran_find(addr);
So(tt->tran != NULL);