mirror of https://github.com/AMT-Cheif/drift.git
Fix documentation typo / wording
This commit is contained in:
parent
ba987b57b1
commit
0d2512c510
|
@ -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;
|
||||
});
|
||||
```
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue