Skip to content

Commit b59fc82

Browse files
committed
Skip flaky test on Windows
flutter#34446
1 parent ea6b758 commit b59fc82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/flutter_tools/test/asset_bundle_test.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// found in the LICENSE file.
44

55
import 'dart:convert';
6+
import 'dart:io' as io;
67

78
import 'package:file/file.dart';
89
import 'package:file/memory.dart';
@@ -138,7 +139,7 @@ name: example''');
138139
expect(bundle.entries.length, 4);
139140
}, overrides: <Type, Generator>{
140141
FileSystem: () => testFileSystem,
141-
});
142+
}, skip: io.Platform.isWindows /* https://github.com/flutter/flutter/issues/34446 */);
142143
});
143144

144145
}

0 commit comments

Comments
 (0)