Merge pull request #4314 from c1728p9/fix_timeout_units

Fix timeout units in events timing test
pull/4322/head
Martin Kojtal 2017-05-15 16:25:11 +01:00 committed by GitHub
commit 865fb950da
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ void semaphore_timing_test() {
// Test setup
utest::v1::status_t test_setup(const size_t number_of_cases) {
GREENTEA_SETUP((number_of_cases+1)*TEST_EVENTS_TIMING_TIME, "default_auto");
GREENTEA_SETUP((number_of_cases+1)*TEST_EVENTS_TIMING_TIME/1000, "default_auto");
return verbose_test_setup_handler(number_of_cases);
}