Fix clone test

The keys were not formatted correctly.
This commit is contained in:
Vishesh Handa
2019-02-06 16:17:58 +01:00
parent 38896ef9c8
commit bd9ca896bf
2 changed files with 9 additions and 10 deletions

View File

@ -25,7 +25,10 @@ void main() {
test('Anonymous GitClone works', () async {
await driver.tap(buttonFinder);
await driver.waitFor(find.text("Success"), timeout: Duration(seconds: 5));
await driver.waitFor(
find.text("Success"),
timeout: Duration(seconds: 15),
);
});
});
}