Commit 109fc956 authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

test/io_channel: fix one more NULL fatal assert



This was added after the previous SPDK_CU_ASSERT_FATAL change was
merged.

Change-Id: I9d26fcd78157b6c9b232ac1e7484d0939cc90612
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent a17ad921
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ channel(void)
	ch3 = spdk_get_io_channel(&device2, SPDK_IO_PRIORITY_DEFAULT, true, &tmp);
	CU_ASSERT(g_create_cb_calls == 1);
	CU_ASSERT(ch2 != ch3);
	CU_ASSERT(ch3 != NULL);
	SPDK_CU_ASSERT_FATAL(ch3 != NULL);
	CU_ASSERT(tmp == ~0x5a5a);

	g_destroy_cb_calls = 0;