only: we have a relevant parameter

This commit is contained in:
rusefillc 2024-04-12 07:37:04 -04:00
parent 6929e57d48
commit e025f3c2f1
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ void TestExecutor::scheduleForLater(const char *msg, scheduling_s *scheduling, i
return; return;
} }
scheduleByTimestamp("test", scheduling, getTimeNowUs() + delayUs, action); scheduleByTimestamp(msg, scheduling, getTimeNowUs() + delayUs, action);
} }
int TestExecutor::executeAll(efitick_t now) { int TestExecutor::executeAll(efitick_t now) {
@ -54,7 +54,7 @@ void TestExecutor::scheduleByTimestamp(const char *msg, scheduling_s *scheduling
} }
if (m_mockExecutor) { if (m_mockExecutor) {
m_mockExecutor->scheduleByTimestamp("test", scheduling, timeUs, action); m_mockExecutor->scheduleByTimestamp(msg, scheduling, timeUs, action);
return; return;
} }
@ -67,7 +67,7 @@ void TestExecutor::scheduleByTimestampNt(const char *msg, scheduling_s* scheduli
return; return;
} }
scheduleByTimestamp("test", scheduling, NT2US(timeNt), action); scheduleByTimestamp(msg, scheduling, NT2US(timeNt), action);
} }
void TestExecutor::cancel(scheduling_s* s) { void TestExecutor::cancel(scheduling_s* s) {