Unverified Commit 6db4c44d authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

remove period from URL so that it opens correctly in vscode (#43200)

parent ce2d8ace
......@@ -128,7 +128,7 @@ class ResidentWebRunner extends ResidentRunner {
);
printStatus('Warning: Flutter\'s support for web development is not stable yet and hasn\'t');
printStatus('been thoroughly tested in production environments.');
printStatus('For more information see https://flutter.dev/web.');
printStatus('For more information see https://flutter.dev/web');
printStatus('');
printStatus(message);
const String quitMessage = 'To quit, press "q".';
......
......@@ -301,6 +301,8 @@ void main() {
final BufferLogger bufferLogger = logger;
expect(bufferLogger.statusText, contains('Warning'));
expect(bufferLogger.statusText, contains('https://flutter.dev/web'));
expect(bufferLogger.statusText, isNot(contains('https://flutter.dev/web.')));
}));
test('debugDumpApp', () => testbed.run(() async {
......
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