| Index: tests/standalone/io/http_body_test.dart
|
| diff --git a/tests/standalone/io/http_body_test.dart b/tests/standalone/io/http_body_test.dart
|
| index 22a22ecff5f1963e40a3cd5dc799c0b47f94d455..b0f5f7390119a06d967e668aa643336ffb5a71e3 100644
|
| --- a/tests/standalone/io/http_body_test.dart
|
| +++ b/tests/standalone/io/http_body_test.dart
|
| @@ -32,6 +32,7 @@ void testHttpClientResponseBody() {
|
| .then((body) {
|
| if (shouldFail) Expect.fail("Error expected");
|
| Expect.equals(type, body.type);
|
| + Expect.isNotNull(body.response);
|
| switch (type) {
|
| case "text":
|
| Expect.equals(expectedBody, body.body);
|
|
|