FATAL on NB2 tune jim stim input signal #2965

This commit is contained in:
Andrey 2021-07-14 16:47:55 -04:00
parent 2442d8f2d8
commit 27350dbad8
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ TEST(injectionScheduling, NormalDutyCycle) {
// Should schedule one normal injection: // Should schedule one normal injection:
// rising edge now // rising edge now
EXPECT_CALL(mockExec, scheduleByTimestampNt("test", &event.signalTimerUp, nowNt + 0, _)); EXPECT_CALL(mockExec, scheduleByTimestampNt(testing::NotNull(), &event.signalTimerUp, nowNt + 0, _));
// falling edge 10ms later // falling edge 10ms later
EXPECT_CALL(mockExec, scheduleByTimestampNt("test", &event.endOfInjectionEvent, nowNt + MS2NT(20), _)); EXPECT_CALL(mockExec, scheduleByTimestampNt(testing::NotNull(), &event.endOfInjectionEvent, nowNt + MS2NT(20), _));
} }
engine->rpmCalculator.oneDegreeUs = 100; engine->rpmCalculator.oneDegreeUs = 100;