From 397cdf52931eff41a2a16456cb78e76acfc394bd Mon Sep 17 00:00:00 2001 From: Pradana Aumars Date: Sat, 12 Jun 2021 11:07:40 +0200 Subject: [PATCH] Fix test_exception_init --- tests/check_exception_t.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/check_exception_t.c b/tests/check_exception_t.c index ef65e09..276b5b1 100644 --- a/tests/check_exception_t.c +++ b/tests/check_exception_t.c @@ -7,7 +7,6 @@ START_TEST(test_exception_init) e = exception_init(); ck_assert_ptr_nonnull(e); ck_assert_int_eq(e->type, NO_ERROR); - ck_assert_ptr_null(e->msg); exception_free(e); } END_TEST