aboutsummaryrefslogtreecommitdiff
path: root/tests/reqrep.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reqrep.c')
-rw-r--r--tests/reqrep.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/reqrep.c b/tests/reqrep.c
index ada21875..df0621bc 100644
--- a/tests/reqrep.c
+++ b/tests/reqrep.c
@@ -23,11 +23,6 @@ TestMain("REQ/REP pattern", {
Reset({ nng_close(req); });
- Convey("Protocols match", {
- So(nng_protocol(req) == NNG_PROTO_REQ);
- So(nng_peer(req) == NNG_PROTO_REP);
- });
-
Convey("Resend time option id works", {
// Set timeout.
@@ -51,11 +46,6 @@ TestMain("REQ/REP pattern", {
Reset({ nng_close(rep); });
- Convey("Protocols match", {
- So(nng_protocol(rep) == NNG_PROTO_REP);
- So(nng_peer(rep) == NNG_PROTO_REQ);
- });
-
Convey("Send with no recv fails", {
nng_msg *msg;
rv = nng_msg_alloc(&msg, 0);