Increase timeout in DNS_TIMEOUTS test for ESP8266

The test floods the device with UDP requests (it skips the 100 ms delay to simulate instant timeout). ESP8266 starts responding with "busy p..." message. It needs more time to process the data and recover for subsequent tests.
pull/11696/head
Michal Paszta 2019-09-30 18:35:03 +03:00 committed by adbridge
parent 9145b72433
commit 0039cfb743
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ void ASYNCHRONOUS_DNS_TIMEOUTS()
TEST_ASSERT(result_exp_timeout > 0);
// Give event queue time to finalise before destructors
ThisThread::sleep_for(2000);
ThisThread::sleep_for(12000);
nsapi_dns_call_in_set(0);
}