Migrate device lab runner to nulls safety (#110582)

This commit is contained in:
Michael Thomsen 2022-08-30 19:46:05 +02:00 committed by GitHub
parent 5f5d4802fe
commit 253e3c0856
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import 'package:flutter_devicelab/framework/runner.dart';
import 'common.dart';
@ -13,7 +11,7 @@ void main() {
'runFlutterConfig': 'false',
'timeoutInMinutes': '1',
};
List<String> printLog;
late List<String> printLog;
void print(String s) => printLog.add(s);
group('run.dart script', () {