1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

ci(switch): fix mem leak test

This commit is contained in:
Gabor Kiss-Vamosi 2022-04-21 21:18:40 +02:00
parent 98660a861d
commit 8481e3a33b

View File

@ -68,7 +68,7 @@ void test_switch_should_not_leak_memory_after_deletion(void)
lv_mem_monitor(&monitor);
final_available_memory = monitor.free_size;
LV_HEAP_CHECK(TEST_ASSERT_LESS_THAN(initial_available_memory, final_available_memory));
LV_HEAP_CHECK(TEST_ASSERT_LESS_OR_EQUAL(initial_available_memory, final_available_memory));
}
void test_switch_animation(void)