Remove goldens request timeout (#67316)

This commit is contained in:
Dan Field 2020-10-05 10:15:09 -07:00 committed by GitHub
parent 3a51bcb5c0
commit ece2f98eb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -888,7 +888,7 @@ class TestGoldenComparator {
final TestGoldenComparatorProcess process = await _processForTestFile(testUri);
process.sendCommand(imageFile, goldenKey, updateGoldens);
final Map<String, dynamic> result = await process.getResponse().timeout(const Duration(seconds: 20));
final Map<String, dynamic> result = await process.getResponse();
if (result == null) {
return 'unknown error';