diff --git a/tests.c b/tests.c index 0f41e56..03df8de 100644 --- a/tests.c +++ b/tests.c @@ -106,9 +106,8 @@ START_TEST(test_refuse_release_1) refuse_release(&refuse, t); ck_assert_int_eq(hdr->retainCount, 1); refuse_reconcile(&refuse); - // This is not safe, as the memory has been deallocated, but we're - // in a controlled environment. - ck_assert_int_eq(hdr->retainCount, 0); + // This is not safe, as the memory has been deallocated. How to test? + //ck_assert_int_eq(hdr->retainCount, 0); } END_TEST