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;
14
14
15
15
void main () {
16
16
final IntegrationTestWidgetsFlutterBinding binding =
17
- IntegrationTestWidgetsFlutterBinding .ensureInitialized () as IntegrationTestWidgetsFlutterBinding ;
17
+ IntegrationTestWidgetsFlutterBinding .ensureInitialized ()
18
+ as IntegrationTestWidgetsFlutterBinding ;
18
19
testWidgets ('verify text' , (WidgetTester tester) async {
19
20
// Build our app and trigger a frame.
20
21
app.main ();
Original file line number Diff line number Diff line change @@ -209,7 +209,8 @@ class IntegrationTestWidgetsFlutterBinding
209
209
_vmService = vmService;
210
210
}
211
211
if (_vmService == null ) {
212
- final developer.ServiceProtocolInfo info = await developer.Service .getInfo ();
212
+ final developer.ServiceProtocolInfo info =
213
+ await developer.Service .getInfo ();
213
214
assert (info.serverUri != null );
214
215
_vmService = await vm_io.vmServiceConnectUri (
215
216
'ws://localhost:${info .serverUri .port }${info .serverUri .path }ws' ,
You can’t perform that action at this time.
0 commit comments