From 524a35fe110dc9389cd4e8522f85b75c0e14bcab Mon Sep 17 00:00:00 2001 From: GP4cK Date: Tue, 1 Aug 2023 09:36:45 +0800 Subject: [PATCH] Fix typo --- drift/test/isolate_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drift/test/isolate_test.dart b/drift/test/isolate_test.dart index 2e08b44a..4f87033c 100644 --- a/drift/test/isolate_test.dart +++ b/drift/test/isolate_test.dart @@ -129,7 +129,7 @@ void main() { await Isolate.spawn(_createBackground, spawned.sendPort, onExit: done.sendPort); - // The isolate shold eventually exit! + // The isolate should eventually exit! expect(done.first, completion(anything)); final drift = await spawned.first as DriftIsolate; @@ -142,7 +142,7 @@ void main() { await Isolate.spawn(_createBackground, spawned.sendPort, onExit: done.sendPort); - // The isolate shold eventually exit! + // The isolate should eventually exit! expect(done.first, completion(anything)); final drift = await spawned.first as DriftIsolate;