Fix test_exception_init

This commit is contained in:
Pradana Aumars 2021-06-12 11:07:40 +02:00
parent f5230ae3d5
commit 397cdf5293
1 changed files with 0 additions and 1 deletions

View File

@ -7,7 +7,6 @@ START_TEST(test_exception_init)
e = exception_init(); e = exception_init();
ck_assert_ptr_nonnull(e); ck_assert_ptr_nonnull(e);
ck_assert_int_eq(e->type, NO_ERROR); ck_assert_int_eq(e->type, NO_ERROR);
ck_assert_ptr_null(e->msg);
exception_free(e); exception_free(e);
} }
END_TEST END_TEST