mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 00:05:33 +03:00
Removed function declaration.
This commit is contained in:
parent
d2c2bc3155
commit
1bd502e9ac
2 changed files with 15 additions and 3 deletions
|
@ -259,7 +259,7 @@ TEST(SchedulerUnittest, TestQueueArray)
|
|||
EXPECT_EQ(lastTaskPrev, taskQueueArray[enqueuedTasks - 2]);
|
||||
EXPECT_EQ(NULL, taskQueueArray[enqueuedTasks - 1]); // NULL at end of queue
|
||||
EXPECT_EQ(NULL, taskQueueArray[enqueuedTasks]);
|
||||
EXPECT_EQ(NULL, taskQueueArray[enqueuedTasks - 1]);
|
||||
EXPECT_EQ(NULL, taskQueueArray[enqueuedTasks + 1]);
|
||||
EXPECT_EQ(deadBeefPtr, taskQueueArray[TASK_COUNT_UNITTEST + 1]);
|
||||
|
||||
taskQueueArray[enqueuedTasks - 1] = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue