From 0d2512c51026c3f9192b82c795e90e99aec19a37 Mon Sep 17 00:00:00 2001 From: Egide Muhire Date: Sun, 26 Jul 2020 13:48:35 +0200 Subject: [PATCH] Fix documentation typo / wording --- docs/content/en/docs/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/en/docs/testing.md b/docs/content/en/docs/testing.md index 0bbc3e2f..3d150f34 100644 --- a/docs/content/en/docs/testing.md +++ b/docs/content/en/docs/testing.md @@ -5,7 +5,7 @@ description: Guide on writing unit tests for moor databases Flutter apps using moor can always be tested with [integration tests](https://flutter.dev/docs/cookbook/testing/integration/introduction) running on a real device. This guide focusses on writing unit tests for a database written in moor. -Those tests can be run and debugged on your computer without additional setup, you don't a +Those tests can be run and debugged on your computer without additional setup, you don't need a physical device to run them. ## Setup @@ -108,4 +108,4 @@ test('stream emits a new user when the name updates', () async { await database.updateName(id, 'changed name'); await expectation; }); -``` \ No newline at end of file +```