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; }