diff --git a/.gitignore b/.gitignore index 43efb4a52..2c3bbb014 100644 --- a/.gitignore +++ b/.gitignore @@ -14,10 +14,6 @@ doc/api/ .vscode/ -# FVM -.fvm -.fvmrc - # Miscellaneous .DS_Store .melos*packages @@ -27,4 +23,12 @@ doc/api/ !/.idea/dio.iml !/.idea/modules.xml +# Coverage coverage + +# Melos +melos_overrides.yaml + +# FVM Version Cache +.fvm/ +.fvmrc diff --git a/dio_test/lib/src/test/upload_tests.dart b/dio_test/lib/src/test/upload_tests.dart index 3d5d964ee..dacd49b50 100644 --- a/dio_test/lib/src/test/upload_tests.dart +++ b/dio_test/lib/src/test/upload_tests.dart @@ -63,7 +63,7 @@ void uploadTests( addTearDown(() => tmp.deleteSync(recursive: true)); final f = File(p.join(tmp.path, 'flutter.png')); - f.createSync(exclusive: false); + f.createSync(); f.writeAsBytesSync(base64Decode(_flutterLogPngBase64)); final contentLength = f.lengthSync(); @@ -92,7 +92,7 @@ void uploadTests( addTearDown(() => tmp.deleteSync(recursive: true)); final f = File(p.join(tmp.path, 'flutter.png')); - f.createSync(exclusive: false); + f.createSync(); f.writeAsBytesSync(base64Decode(_flutterLogPngBase64)); final contentLength = f.lengthSync();