From 77c46276cc6d42eac79bfca23648a1c1b60a490d Mon Sep 17 00:00:00 2001 From: liyuqian Date: Fri, 13 Mar 2020 20:01:01 -0700 Subject: [PATCH] Fix typo its to it's (#52580) --- packages/flutter_driver/lib/src/driver/driver.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_driver/lib/src/driver/driver.dart b/packages/flutter_driver/lib/src/driver/driver.dart index 96debdeb5c..4fd17f0c26 100644 --- a/packages/flutter_driver/lib/src/driver/driver.dart +++ b/packages/flutter_driver/lib/src/driver/driver.dart @@ -665,7 +665,7 @@ abstract class FlutterDriver { /// action will time out). For these cases, the sync mechanism can be disabled /// by wrapping the actions to be performed by this [runUnsynchronized] method. /// - /// With frame sync disabled, its the responsibility of the test author to + /// With frame sync disabled, it's the responsibility of the test author to /// ensure that no action is performed while the app is undergoing a /// transition to avoid flakiness. Future runUnsynchronized(Future action(), { Duration timeout }) async {