File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,7 @@ void main() {
9999 });
100100 });
101101
102- testWithProfile ('deleted files + full sync' , expectedLogMessages: [
103- // TODO: review why we have unhandled errors here
104- RegExp (r'^SEVERE Unhandled error in API handler \(incidentId: .*\)' ),
105- ], fn: () async {
102+ testWithProfile ('deleted files + full sync' , fn: () async {
106103 await syncExportedApi ();
107104 final oldRoot = await listExportedApi ();
108105
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ class _Bucket implements Bucket {
317317 final isDirPrefix =
318318 prefix.isEmpty || (delimiter.isNotEmpty && prefix.endsWith (delimiter));
319319 final segments = < String > {};
320- for (final name in _files.keys) {
320+ for (final name in [... _files.keys] ) {
321321 bool matchesPrefix () {
322322 // without prefix, return everything
323323 if (prefix! .isEmpty) return true ;
You can’t perform that action at this time.
0 commit comments