Skip to content

Commit

Permalink
refactor: Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmah309 committed Dec 23, 2024
1 parent 8e8161e commit c8e8554
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/fs/vm_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ main() {
final openOptions = OpenOptions()
..append(true)
..read(true);
RandomAccessFile file = await openOptions.open("test/fs/vm_test.dart".asPath()).unwrap();
RandomAccessFile file =
await openOptions.open("test/fs/vm_test.dart".asPath()).unwrap();
file.closeSync();
openOptions.read(false);
file = await openOptions.open("test/fs/vm_test.dart".asPath()).unwrap();
Expand Down

0 comments on commit c8e8554

Please sign in to comment.