Skip to content

Commit c8266c5

Browse files
committed
Fixed for real?
1 parent 0ce31e7 commit c8266c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FprimeZephyrReference/test/int/power_monitor_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def test_02_total_power_consumption_telemetry(
7171
):
7272
"""Test that TotalPowerConsumption telemetry is being updated"""
7373
total_power: ChData = fprime_test_api.assert_telemetry(
74-
f"{powerMonitor}.TotalPowerConsumption", start="NOW", timeout=3
74+
f"{powerMonitor}.TotalPowerConsumption", start="NOW", timeout=65
7575
)
7676

7777
total_power_reading: float = total_power.get_val()
@@ -101,7 +101,7 @@ def test_03_reset_total_power_command(fprime_test_api: IntegrationTestAPI, start
101101
# Get total power after reset - should be very small (close to 0)
102102
# Allow small value due to time between reset and next telemetry update
103103
total_power_after: ChData = fprime_test_api.assert_telemetry(
104-
f"{powerMonitor}.TotalPowerConsumption", timeout=3
104+
f"{powerMonitor}.TotalPowerConsumption", start="NOW", timeout=65
105105
)
106106

107107
total_power_after_reading: float = total_power_after.get_val()

0 commit comments

Comments
 (0)