!903 fix: 修复测试用例断言宏使用不规范的问题

Merge pull request !903 from Zhaotianyu/20221110test_fix_assert
This commit is contained in:
openharmony_ci
2022-11-14 09:41:12 +00:00
committed by Gitee
10 changed files with 61 additions and 60 deletions

View File

@@ -679,7 +679,8 @@ LITE_TEST_CASE(PthreadFuncTestSuite, TestPthread009, Function | MediumTest | Lev
static VOID PthreadOnceFunc01(void)
{
g_testCount++;
ICUNIT_ASSERT_EQUAL_VOID(g_testCount, 1, g_testCount);
ICUNIT_TRACK_EQUAL(g_testCount, 1, g_testCount);
return;
}
/**