Fix template for the driver test file created by 'flutter create' (#13472)

This commit is contained in:
Matt Sullivan 2017-12-08 20:39:56 -08:00 committed by Chris Bracken
parent 3264845e09
commit 51ab5f36c6

View file

@ -32,7 +32,7 @@ void main() {
await driver.tap(fab);
// Wait for text to change to the desired value
await driver.waitFor(find.text('Button tapped 1 time.'));
await driver.waitFor(find.text('1'));
});
});
}