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 @@ -206,7 +206,8 @@ class IntegrationTestWidgetsFlutterBinding
206206 _vmService = vmService;
207207 }
208208 if (_vmService == null ) {
209- final developer.ServiceProtocolInfo info = await developer.Service .getInfo ();
209+ final developer.ServiceProtocolInfo info =
210+ await developer.Service .getInfo ();
210211 assert (info.serverUri != null );
211212 _vmService = await vm_io.vmServiceConnectUri (
212213 'ws://localhost:${info .serverUri .port }${info .serverUri .path }ws' ,
You can’t perform that action at this time.
0 commit comments