aboutsummaryrefslogtreecommitdiff
path: root/tests/pipeline.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pipeline.c')
-rw-r--r--tests/pipeline.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pipeline.c b/tests/pipeline.c
index 31f02798..67be57c6 100644
--- a/tests/pipeline.c
+++ b/tests/pipeline.c
@@ -28,11 +28,6 @@ TestMain("PIPELINE (PUSH/PULL) pattern", {
Reset({ nng_close(push); });
- Convey("Protocols match", {
- So(nng_protocol(push) == NNG_PROTO_PUSH);
- So(nng_peer(push) == NNG_PROTO_PULL);
- });
-
Convey("Recv fails", {
nng_msg *msg;
So(nng_recvmsg(push, &msg, 0) == NNG_ENOTSUP);
@@ -45,11 +40,6 @@ TestMain("PIPELINE (PUSH/PULL) pattern", {
Reset({ nng_close(pull); });
- Convey("Protocols match", {
- So(nng_protocol(pull) == NNG_PROTO_PULL);
- So(nng_peer(pull) == NNG_PROTO_PUSH);
- });
-
Convey("Send fails", {
nng_msg *msg;
So(nng_msg_alloc(&msg, 0) == 0);