tests/eina: fix assign when compare was intended

Summary: CID 1400858

Reviewers: lauromoura

Reviewed By: lauromoura

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10396
This commit is contained in:
Mike Blumenkrantz 2019-10-15 11:18:43 -03:00 committed by Lauro Moura
parent 31bc3beb22
commit 7e7465379f
1 changed files with 1 additions and 1 deletions

View File

@ -2631,7 +2631,7 @@ EFL_START_TEST(eina_value_test_struct)
(value, myst_members + 1, &other));
fail_unless(other.type == EINA_VALUE_TYPE_CHAR);
fail_unless(eina_value_get(&other, &c));
fail_unless(c = 0xf);
fail_unless(c == 0xf);
eina_value_flush(&other);
str = eina_value_to_string(value);