1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Fix typos (#511)

This commit is contained in:
Abdullah Deshmukh
2020-08-13 10:33:35 +05:30
committed by GitHub
parent 0eb1233cb4
commit 879029a98f

View File

@@ -30,12 +30,12 @@ void main() {
/// Specifically, send 'ADD' command to the handler in this case.
await driver.requestData('ADD');
// Check if the new item apppears in the list.
// Check if the new item appears in the list.
await driver.waitFor(find.text('Item 30'));
});
test('Verifying remove method', () async {
/// Peform remove operation on the provider using the [DataHandler].
/// Perform remove operation on the provider using the [DataHandler].
await driver.requestData('REMOVE');
// Verify if it disappears.