From b7bf0373a713a835b5a3b49cd04a767833e8dfb9 Mon Sep 17 00:00:00 2001
From: Camille Simon <43054281+camsim99@users.noreply.github.com>
Date: Fri, 8 Dec 2023 10:24:24 -0800
Subject: [PATCH] [path_provider_android] Disable
 `getExternalStorageDirectories (type: ...)` test (#5619)

Disables the `getExternalStorageDirectories (type: ...)` integration test in `path_provider_android` that is extremely flaky (particularly on AVDs running Android 34) to reduce the impact it has had on developer productivity.

Fixes https://github.com/flutter/flutter/issues/139378.
---
 .../example/integration_test/path_provider_test.dart          | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/packages/path_provider/path_provider_android/example/integration_test/path_provider_test.dart b/packages/path_provider/path_provider_android/example/integration_test/path_provider_test.dart
index 1403d932d2..e48cdf1796 100644
--- a/packages/path_provider/path_provider_android/example/integration_test/path_provider_test.dart
+++ b/packages/path_provider/path_provider_android/example/integration_test/path_provider_test.dart
@@ -78,7 +78,9 @@ void main() {
       for (final String result in directories!) {
         _verifySampleFile(result, '$type');
       }
-    });
+    },
+        // TODO(camsim99): Fix https://github.com/flutter/flutter/issues/139808.
+        skip: true);
   }
 }