Changes per PR

This commit is contained in:
Pranav K 2019-01-25 13:53:07 -08:00
parent c8319ece2a
commit 16228c646a
No known key found for this signature in database
GPG Key ID: 1963DA6D96C3057A
1 changed files with 2 additions and 2 deletions

View File

@ -100,15 +100,15 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Infrastructure
var response = await responseTask; var response = await responseTask;
if (response.StatusCode == HttpStatusCode.OK) if (response.StatusCode == HttpStatusCode.OK)
{ {
break; return;
} }
} }
catch (OperationCanceledException) catch (OperationCanceledException)
{ {
} }
await Task.Delay(1000); await Task.Delay(1000);
} }
}); });