[flutter_tools] re-enable non-nullable test (#57075)

This commit is contained in:
Jonah Williams 2020-05-13 09:32:03 -07:00 committed by GitHub
parent 7bed5a2851
commit 3ccb160da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -604,7 +604,6 @@ Future<void> _runFrameworkTests() async {
await _runFlutterTest(path.join(flutterRoot, 'packages', 'fuchsia_remote_debug_protocol'), tableData: bigqueryApi?.tabledata);
await _runFlutterTest(path.join(flutterRoot, 'dev', 'integration_tests', 'non_nullable'),
options: <String>['--enable-experiment=non-nullable'],
skip: true, // TODO(jonahwilliams): re-enable after https://github.com/flutter/flutter/issues/55872
);
await _runFlutterTest(
path.join(flutterRoot, 'dev', 'tracing_tests'),

View File

@ -213,7 +213,7 @@ void catchIsolateErrors() {
void main() {
print('$_kStartTimeoutTimerMessage');
String serverPort = Platform.environment['SERVER_PORT'];
String serverPort = Platform.environment['SERVER_PORT'] ?? '';
String server = Uri.decodeComponent('$encodedWebsocketUrl:\$serverPort');
StreamChannel<dynamic> channel = serializeSuite(() {
catchIsolateErrors();