diff --git a/src/fw/apps/system_apps/health/health_card_view.c b/src/fw/apps/system_apps/health/health_card_view.c index 396c666c..cb51b70b 100644 --- a/src/fw/apps/system_apps/health/health_card_view.c +++ b/src/fw/apps/system_apps/health/health_card_view.c @@ -103,7 +103,7 @@ static int prv_get_next_card_idx(Card current, bool up) { if (next == Card_HrSummary && !activity_is_hrm_present()) { next = next + direction; } - // if heart rate is diabled, change the order of cards to Activity <-> Sleep <-> HR + // if heart rate is disabled, change the order of cards to Activity <-> Sleep <-> HR else if (activity_is_hrm_present() && !activity_prefs_heart_rate_is_enabled()) { if (current == Card_ActivitySummary) { next = up ? Card_SleepSummary : BACK_TO_WATCHFACE; diff --git a/tests/fw/services/health/test_health.c b/tests/fw/services/health/test_health.c index 57b2366c..ea4b3341 100644 --- a/tests/fw/services/health/test_health.c +++ b/tests/fw/services/health/test_health.c @@ -1532,7 +1532,7 @@ static void prv_update_stats(HealthServiceStats *stats, HealthValue value) { // valid aggregation functions. The sum function is only applicable to cumulative metrics and is // tested above in test_health__sum_full_days(). -// DISBLAED because the firmware doesn't actually store daily history of HRM values. +// DISABLED because the firmware doesn't actually store daily history of HRM values. void DISABLED_test_health__min_max_avg_full_days(void) { // Get the current time and day const time_t now = rtc_get_time();