We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c245bd8 commit c6c451eCopy full SHA for c6c451e
packages/flutter_tools/lib/src/test/flutter_platform.dart
@@ -211,8 +211,8 @@ void catchIsolateErrors() {
211
}
212
213
void main() {
214
- String serverPort = Platform.environment['SERVER_PORT'] ?? '';
215
- String server = Uri.decodeComponent('$websocketUrl:\$serverPort');
+ final String serverPort = Platform.environment['SERVER_PORT'] ?? '';
+ final String server = '$websocketUrl:\$serverPort';
216
StreamChannel<dynamic> testChannel = serializeSuite(() {
217
catchIsolateErrors();
218
''');
0 commit comments