diff options
author | Alfred E. Heggestad <aeh@db.org> | 2016-02-14 12:42:14 +0100 |
---|---|---|
committer | Alfred E. Heggestad <aeh@db.org> | 2016-02-14 12:42:14 +0100 |
commit | bcc02dc4019b6d4afd744bc06e6764687a7af8b5 (patch) | |
tree | 51bf3253694c5058b252e5d29cd801f2edb431f9 /test/call.c | |
parent | 7c8862398d184d8735b718145a75bb0dd5e650f0 (diff) |
test: use milliseconds for re_main_timeout value
Diffstat (limited to 'test/call.c')
-rw-r--r-- | test/call.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/call.c b/test/call.c index 7ca1815..893b25e 100644 --- a/test/call.c +++ b/test/call.c @@ -181,7 +181,7 @@ int test_call_answer(void) TEST_ERR(err); /* run main-loop with timeout, wait for events */ - err = re_main_timeout(5); + err = re_main_timeout(5000); TEST_ERR(err); TEST_ERR(fix.err); @@ -215,7 +215,7 @@ int test_call_reject(void) TEST_ERR(err); /* run main-loop with timeout, wait for events */ - err = re_main_timeout(5); + err = re_main_timeout(5000); TEST_ERR(err); TEST_ERR(fix.err); @@ -248,7 +248,7 @@ int test_call_af_mismatch(void) TEST_ERR(err); /* run main-loop with timeout, wait for events */ - err = re_main_timeout(5); + err = re_main_timeout(5000); TEST_ERR(err); TEST_ERR(fix.err); |