diff options
author | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2022-02-16 09:45:39 +0100 |
---|---|---|
committer | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2022-02-16 09:45:39 +0100 |
commit | 4246615f48b22d19d47794d2b1b54f31602eaf02 (patch) | |
tree | 67acdef19e8648ad6e3a90e27635a6ed25a35d83 /tests | |
parent | e4824f5f6b12a21b0fd60a8dd25daad53b5ae8c3 (diff) | |
download | lvgl-4246615f48b22d19d47794d2b1b54f31602eaf02.tar.gz lvgl-4246615f48b22d19d47794d2b1b54f31602eaf02.zip |
chore(tests): fix image compare tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unity/unity_support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unity/unity_support.c b/tests/unity/unity_support.c index 6dea581f2..c495b93e3 100644 --- a/tests/unity/unity_support.c +++ b/tests/unity/unity_support.c @@ -151,7 +151,7 @@ bool lv_test_assert_img_eq(const char * fn_ref) png_release(&p); - return err; + return !err; } |