eina_cxx: change strings to match new returned system string.

This commit is contained in:
Cedric BAIL 2016-08-19 10:17:15 -07:00
parent 4d701bca2e
commit 552db73ac4
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ START_TEST(eina_cxx_get_error)
efl::eina::error_code ec3 = efl::eina::get_error_code();
ck_assert(!!ec3);
ck_assert(ec3.message() == "Out of memory");
ck_assert(ec3.message() == strerror(ENOMEM));
}
END_TEST