tests: undef NDEBUG in tests

So we can run tests even when compiled with -DNDEBUG

Change-Id: Iebb8399409e2b0a5172529e08bcac188956fd925
Signed-off-by: Rashmica Gupta <rashmica@linux.ibm.com>
diff --git a/tests/test-utils.c b/tests/test-utils.c
index fca1910..cbb931b 100644
--- a/tests/test-utils.c
+++ b/tests/test-utils.c
@@ -1,5 +1,9 @@
 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
 
+#ifdef NDEBUG
+#undef NDEBUG
+#endif
+
 #include <string.h>
 #include <assert.h>
 
@@ -23,7 +27,6 @@
 struct mctp_binding_test *mctp_binding_test_init(void)
 {
 	struct mctp_binding_test *test;
-
 	test = __mctp_alloc(sizeof(*test));
 	memset(test, '\0', sizeof(*test));
 	test->binding.name = "test";