Unverified Commit b880dad4 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] delete test that will start failing (#62580)

parent c8cb245f
...@@ -224,17 +224,6 @@ void main() { ...@@ -224,17 +224,6 @@ void main() {
expect(identical(firstPath, fs.path), false); expect(identical(firstPath, fs.path), false);
}); });
testWithoutContext('Throws type error if Directory type is set to curentDirectory with LocalFileSystem', () {
final FileSystem fs = ErrorHandlingFileSystem(
delegate: LocalFileSystem.instance,
platform: const LocalPlatform(),
);
final MockDirectory directory = MockDirectory();
when(directory.path).thenReturn('path');
expect(() => fs.currentDirectory = directory, throwsA(isA<TypeError>()));
});
group('toString() gives toString() of delegate', () { group('toString() gives toString() of delegate', () {
testWithoutContext('ErrorHandlingFileSystem', () { testWithoutContext('ErrorHandlingFileSystem', () {
final MockFileSystem mockFileSystem = MockFileSystem(); final MockFileSystem mockFileSystem = MockFileSystem();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment