Evas text test: Fixed the test to work with Clang.

Apparently L'' doesn't work there.

SVN revision: 82940
This commit is contained in:
Tom Hacohen 2013-01-17 16:58:23 +00:00
parent eb7a8feef5
commit 6aa4eb7d86
1 changed files with 2 additions and 2 deletions

View File

@ -175,11 +175,11 @@ START_TEST(evas_text_unrelated)
pos = 0;
fail_if(2 != evas_string_char_next_get(buf, pos, &value));
fail_if(value != L'נ');
fail_if(value != 1504);
pos = 2;
fail_if(0 != evas_string_char_prev_get(buf, pos, &value));
fail_if(value != L'ס');
fail_if(value != 1505);
END_TEXT_TEST();
}