tests: reduce looping in eina_ustringshare_putstuff

fix T6843

Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
This commit is contained in:
Mike Blumenkrantz 2018-03-30 15:45:56 -04:00 committed by Stefan Schmidt
parent e8878e19b7
commit 4ac90511b9
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ EFL_START_TEST(eina_ustringshare_putstuff)
int i;
for (i = 10000; i > 0; --i)
for (i = 100; i > 0; --i)
{
Eina_Unicode string_[] = {'s', 't', 'r', 'i', 'n', 'g', '_', 0};
Eina_Unicode build[64];