Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 3b763ca

Browse files
committed
formatting
1 parent 795f801 commit 3b763ca

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/e2e/lib/e2e_driver.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,17 @@ Future<void> e2eDriver({
2424
String testName,
2525
bool traceTimeline = false,
2626
}) async {
27-
2827
print(testName);
2928
final FlutterDriver driver = await FlutterDriver.connect();
3029
String jsonResult;
3130
Timeline timeline;
3231
Future<void> runner() async {
3332
jsonResult = await driver.requestData(null, timeout: timeout);
3433
}
34+
3535
if (traceTimeline) {
3636
timeline = await driver.traceAction(runner);
37-
}
38-
else {
37+
} else {
3938
await runner();
4039
}
4140
final e2e.Response response = e2e.Response.fromJson(jsonResult);

0 commit comments

Comments
 (0)