Skip to content

Commit

Permalink
Fix TestSdkConfigurationProvider.dispose (#2308)
Browse files Browse the repository at this point in the history
  • Loading branch information
derekxu16 authored Dec 18, 2023
1 parent a12368f commit 7543345
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 7543345

Please sign in to comment.