This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/integration_test Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ import 'package:integration_test_example/main.dart' as app;
1414
1515void main () {
1616 final IntegrationTestWidgetsFlutterBinding binding =
17- IntegrationTestWidgetsFlutterBinding .ensureInitialized () as IntegrationTestWidgetsFlutterBinding ;
17+ IntegrationTestWidgetsFlutterBinding .ensureInitialized ()
18+ as IntegrationTestWidgetsFlutterBinding ;
1819 testWidgets ('verify text' , (WidgetTester tester) async {
1920 // Build our app and trigger a frame.
2021 app.main ();
Original file line number Diff line number Diff line change @@ -209,7 +209,8 @@ class IntegrationTestWidgetsFlutterBinding
209209 _vmService = vmService;
210210 }
211211 if (_vmService == null ) {
212- final developer.ServiceProtocolInfo info = await developer.Service .getInfo ();
212+ final developer.ServiceProtocolInfo info =
213+ await developer.Service .getInfo ();
213214 assert (info.serverUri != null );
214215 _vmService = await vm_io.vmServiceConnectUri (
215216 'ws://localhost:${info .serverUri .port }${info .serverUri .path }ws' ,
You can’t perform that action at this time.
0 commit comments