Skip to content

Commit

Permalink
Fix TestSdkConfigurationProvider.dispose
Browse files Browse the repository at this point in the history
  • Loading branch information
derekxu16 committed Dec 15, 2023
1 parent a12368f commit ddb7417
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test_common/lib/test_sdk_configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ class TestSdkConfigurationProvider extends SdkConfigurationProvider {
}
} catch (e, s) {
_logger.warning('Failed delete SDK directory copy', e, s);
dispose(retry: false);
if (retry) {
dispose(retry: false);
}
}
}
}

0 comments on commit ddb7417

Please sign in to comment.