Unverified Commit 253e3c08 authored by Michael Thomsen's avatar Michael Thomsen Committed by GitHub

Migrate device lab runner to nulls safety (#110582)

parent 5f5d4802
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// @dart = 2.8
import 'package:flutter_devicelab/framework/runner.dart'; import 'package:flutter_devicelab/framework/runner.dart';
import 'common.dart'; import 'common.dart';
...@@ -13,7 +11,7 @@ void main() { ...@@ -13,7 +11,7 @@ void main() {
'runFlutterConfig': 'false', 'runFlutterConfig': 'false',
'timeoutInMinutes': '1', 'timeoutInMinutes': '1',
}; };
List<String> printLog; late List<String> printLog;
void print(String s) => printLog.add(s); void print(String s) => printLog.add(s);
group('run.dart script', () { group('run.dart script', () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment