fix:修复拼写错误

Signed-off-by: x_xiny <1301913191@qq.com>
Change-Id: I1cc4897e5d37dd98696221f0cc70220cef45e7d4
This commit is contained in:
x_xiny
2022-03-14 22:22:56 +08:00
parent 0f75bf01a6
commit bc70db58a7
15 changed files with 24 additions and 24 deletions

View File

@@ -66,8 +66,8 @@ static UINT32 Testcase(VOID)
ret = LOS_TaskDelay(12); // 12, set delay time
ICUNIT_ASSERT_EQUAL(ret, LOS_OK, ret);
if (g_testCount < 10) { // 10, if g_testCount < 10 set a erro code, then exit
ICUNIT_GOTO_EQUAL(g_testCount, 10, g_testCount, EXIT); // 10, if g_testCount < 10 set a erro code, then exit
if (g_testCount < 10) { // 10, if g_testCount < 10 set an erro code, then exit
ICUNIT_GOTO_EQUAL(g_testCount, 10, g_testCount, EXIT); // 10, if g_testCount < 10 set an erro code, then exit
}
EXIT:

View File

@@ -63,7 +63,7 @@ static UINT32 Testcase(VOID)
ret = LOS_SwtmrTimeGet(swTmrID, &tick);
ICUNIT_GOTO_EQUAL(ret, LOS_OK, ret, EXIT);
if (tick > 4) { // 4, if tick > 4, set a erro code, then exit
if (tick > 4) { // 4, if tick > 4, set an erro code, then exit
ICUNIT_GOTO_EQUAL(1, 0, tick, EXIT);
}