| Index: pkg/shelf/test/test_util.dart
|
| diff --git a/pkg/shelf/test/test_util.dart b/pkg/shelf/test/test_util.dart
|
| index 10afe995c06570f3fc3753763d32f9aa46dc0bdd..281989b364cc0e11cc7cc6a5e3ddd0b174f28296 100644
|
| --- a/pkg/shelf/test/test_util.dart
|
| +++ b/pkg/shelf/test/test_util.dart
|
| @@ -9,6 +9,12 @@ import 'dart:async';
|
| import 'package:shelf/shelf.dart';
|
| import 'package:shelf/src/util.dart';
|
|
|
| +// "hello,"
|
| +const HELLO_BYTES = const [104, 101, 108, 108, 111, 44];
|
| +
|
| +// " world"
|
| +const WORLD_BYTES = const [32, 119, 111, 114, 108, 100];
|
| +
|
| /// A simple, synchronous handler for [Request].
|
| ///
|
| /// By default, replies with a status code 200, empty headers, and
|
|
|