From a57feac62e076661b1284d52d21bf5fc43388f31 Mon Sep 17 00:00:00 2001 From: adityapstar Date: Wed, 25 Mar 2020 17:26:01 -0500 Subject: [PATCH] fixed typo in HttpClient failure message (#53211) --- dev/bots/test.dart | 2 +- packages/flutter_test/lib/src/_binding_io.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/bots/test.dart b/dev/bots/test.dart index cde650f6230..c0a76814ec2 100644 --- a/dev/bots/test.dart +++ b/dev/bots/test.dart @@ -467,7 +467,7 @@ Future _runFrameworkTests() async { 'Warning: At least one test in this suite creates an HttpClient. When\n' 'running a test suite that uses TestWidgetsFlutterBinding, all HTTP\n' 'requests will return status code 400, and no network request will\n' - 'actually be made. Any test expecting an real network connection and\n' + 'actually be made. Any test expecting a real network connection and\n' 'status code will fail.\n' 'To test code that needs an HttpClient, provide your own HttpClient\n' 'implementation to the code under test, so that your test can\n' diff --git a/packages/flutter_test/lib/src/_binding_io.dart b/packages/flutter_test/lib/src/_binding_io.dart index 40d38cace6a..1ca0001b993 100644 --- a/packages/flutter_test/lib/src/_binding_io.dart +++ b/packages/flutter_test/lib/src/_binding_io.dart @@ -84,7 +84,7 @@ class _MockHttpOverrides extends HttpOverrides { 'Warning: At least one test in this suite creates an HttpClient. When\n' 'running a test suite that uses TestWidgetsFlutterBinding, all HTTP\n' 'requests will return status code 400, and no network request will\n' - 'actually be made. Any test expecting an real network connection and\n' + 'actually be made. Any test expecting a real network connection and\n' 'status code will fail.\n' 'To test code that needs an HttpClient, provide your own HttpClient\n' 'implementation to the code under test, so that your test can\n'