Skip to content

Commit 319d4c3

Browse files
authored
test: Remove optional exclusive parameter from core store test (#876)
1 parent 70a3b70 commit 319d4c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/flutter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ The Parse Flutter SDK is continuously tested with the most recent release of the
4747
|--------------|----------------|----------------------------------------------|
4848
| Flutter 3.10 | May 2024 | ❌ No |
4949
| Flutter 3.7 | Apr 2024 | ✅ Yes |
50-
| Flutter 3.3 | Jan 2024 | ❌ No |
51-
| Flutter 3.0 | Jul 2023 | ❌ No (Parse Dart SDK requires Dart >=2.18.0) |
50+
| Flutter 3.3 | Jan 2024 | ✅ Yes |
51+
| Flutter 3.0 | Jul 2023 | ❌ No (Parse Flutter SDK requires Flutter >=3.3.0) |
5252

5353
## Getting Started
5454

packages/flutter/test/src/storage/core_store_directory_io_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ File create1MBParseDBFileInLibraryPath() {
192192

193193
File generate1MBFile(String path) {
194194
final dbFile = File(path);
195-
dbFile.createSync(recursive: true, exclusive: false);
195+
dbFile.createSync(recursive: true);
196196

197197
const fileSize = 1024 * 1024; // 1 MB
198198
final random = Random();

0 commit comments

Comments
 (0)