From 27350dbad875d7ba295628073c1e1be2ee3bc496 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 14 Jul 2021 16:47:55 -0400 Subject: [PATCH] FATAL on NB2 tune jim stim input signal #2965 --- unit_tests/tests/trigger/test_injection_scheduling.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit_tests/tests/trigger/test_injection_scheduling.cpp b/unit_tests/tests/trigger/test_injection_scheduling.cpp index b7cda3da80..effdfb7fa3 100644 --- a/unit_tests/tests/trigger/test_injection_scheduling.cpp +++ b/unit_tests/tests/trigger/test_injection_scheduling.cpp @@ -33,9 +33,9 @@ TEST(injectionScheduling, NormalDutyCycle) { // Should schedule one normal injection: // 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 - 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;