ecore_con: no need for a long timeout when we know the test is supposed to timeout.

Reviewed-by: Marcel Hollerbach <marcel-hollerbach@t-online.de>
Differential Revision: https://phab.enlightenment.org/D7422
This commit is contained in:
Cedric BAIL 2018-12-05 10:47:06 -08:00 committed by Marcel Hollerbach
parent 2bc28da2e3
commit 5e440beb71
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ EFL_START_TEST(ecore_test_ecore_con_dns)
client = ecore_con_server_connect(ECORE_CON_REMOTE_TCP,
"wongsub.wrongdns.lan", 1234, NULL);
fail_if (client == NULL);
ecore_con_server_timeout_set(client, 5.0);
ecore_con_server_timeout_set(client, 1.0); // No point for a long timeout as we know it is wrong
ecore_main_loop_begin();
fail_if (err_check != EINA_FALSE);