Skip to content

Commit 98dc73c

Browse files
committed
Test passing
1 parent cc753a4 commit 98dc73c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

FprimeZephyrReference/test/int/power_monitor_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import pytest
1010
from common import proves_send_and_assert_command
11+
from fprime.common.models.serialize.time_type import TimeType
1112
from fprime_gds.common.data_types.ch_data import ChData
1213
from fprime_gds.common.testing_fw.api import IntegrationTestAPI
1314

@@ -27,7 +28,7 @@ def send_packet(fprime_test_api: IntegrationTestAPI, start_gds):
2728

2829
def test_01_power_manager_telemetry(fprime_test_api: IntegrationTestAPI, start_gds):
2930
"""Test that we can get Acceleration telemetry"""
30-
start = datetime.now()
31+
start: TimeType = TimeType().set_datetime(datetime.now())
3132
sys_voltage: ChData = fprime_test_api.assert_telemetry(
3233
f"{ina219SysManager}.Voltage", start=start, timeout=65
3334
)

0 commit comments

Comments
 (0)