From 6dac5092ad7cc6b38c049fdc1f0b52fd0ef4a9d8 Mon Sep 17 00:00:00 2001 From: Dylan Cali Date: Sun, 28 Jun 2015 21:27:06 -0500 Subject: [PATCH] fix errant comments --- tests/test_unbind_inproc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 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; }