chore(test): fix render test typo (#6370)

Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
This commit is contained in:
VIFEX
2024-06-15 01:50:00 +08:00
committed by GitHub
parent 25db891e3d
commit c4c66386f4
3 changed files with 3 additions and 3 deletions
@@ -15,7 +15,7 @@ void tearDown(void)
lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888); lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888);
} }
void test_render_to_rgb565(void) void test_render_to_argb8888(void)
{ {
lv_display_set_color_format(NULL, LV_COLOR_FORMAT_ARGB8888); lv_display_set_color_format(NULL, LV_COLOR_FORMAT_ARGB8888);
@@ -15,7 +15,7 @@ void tearDown(void)
lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888); lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888);
} }
void test_render_to_rgb565(void) void test_render_to_rgb888(void)
{ {
lv_display_set_color_format(NULL, LV_COLOR_FORMAT_RGB888); lv_display_set_color_format(NULL, LV_COLOR_FORMAT_RGB888);
@@ -15,7 +15,7 @@ void tearDown(void)
lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888); lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888);
} }
void test_render_to_rgb565(void) void test_render_to_xrgb8888(void)
{ {
lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888); lv_display_set_color_format(NULL, LV_COLOR_FORMAT_XRGB8888);