From b0023f0ccf3be0abf0e99fe9f05427dc771db55a Mon Sep 17 00:00:00 2001 From: Dylan Cali Date: Sun, 28 Jun 2015 21:28:49 -0500 Subject: [PATCH] fix errant comments --- tests/test_unbind_inproc.cpp | 4 ++-- tests/test_unbind_wildcard.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_unbind_inproc.cpp b/tests/test_unbind_inproc.cpp index 73059175..104d8cb3 100644 --- a/tests/test_unbind_inproc.cpp +++ b/tests/test_unbind_inproc.cpp @@ -33,8 +33,8 @@ int main (void) rc = zmq_unbind (sb, "inproc://a"); assert (rc == 0); - // rc = zmq_ctx_term (ctx); - // assert (rc == 0); + rc = zmq_ctx_term (ctx); + assert (rc == 0); return 0; } diff --git a/tests/test_unbind_wildcard.cpp b/tests/test_unbind_wildcard.cpp index 40402460..1a4e72a0 100644 --- a/tests/test_unbind_wildcard.cpp +++ b/tests/test_unbind_wildcard.cpp @@ -38,8 +38,8 @@ int main (void) rc = zmq_unbind (sb, endpoint); assert (rc == 0); - // rc = zmq_ctx_term (ctx); - // assert (rc == 0); + rc = zmq_ctx_term (ctx); + assert (rc == 0); return 0; }