utest: fix the assert condition 28/173928/1
authorSooChan Lim <sc1.lim@samsung.com>
Tue, 27 Mar 2018 04:03:41 +0000 (13:03 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Tue, 27 Mar 2018 04:03:41 +0000 (13:03 +0900)
Change-Id: Ic8cf43065ed6b72e360eb0fb7927f12a859991ec

utests/ut_tbm_bo.cpp

index ccc0f8c..fd8aa4f 100644 (file)
@@ -577,7 +577,7 @@ TEST_P(TBMBo, BoSize)
        ASSERT_TRUE(bo != NULL);
 
        size = tbm_bo_size(bo);
-       ASSERT_TRUE(size == 0);
+       ASSERT_TRUE(size != 0);
 
        tbm_bo_unref(bo);
 }