Add missing await

This commit is contained in:
Vishesh Handa
2021-06-06 01:11:43 +02:00
parent 2fc192580a
commit 82b513b3ed

@ -39,7 +39,7 @@ Booga Wooga
""";
var notePath = p.join(tempDir.path, "note.md");
File(notePath).writeAsString(content);
await File(notePath).writeAsString(content);
var parentFolder = NotesFolderFS(null, tempDir.path, Settings(''));
var note = Note(parentFolder, notePath);