| Index: pkg/http/test/safe_http_server.dart
|
| diff --git a/pkg/http/test/safe_http_server.dart b/pkg/http/test/safe_http_server.dart
|
| index 8ce094f4b603bde9d539bb962e4ac5a17455db43..5d709f99580ad5f0d5a394a5081c560f54fafcb9 100644
|
| --- a/pkg/http/test/safe_http_server.dart
|
| +++ b/pkg/http/test/safe_http_server.dart
|
| @@ -143,5 +143,6 @@ class _HttpResponseWrapper implements HttpResponse {
|
| _inner.writeAll(objects, separator);
|
| void writeCharCode(int charCode) => _inner.writeCharCode(charCode);
|
| void writeln([Object obj = ""]) => _inner.writeln(obj);
|
| - void addError(error) => _inner.addError(error);
|
| + void addError(error, [StackTrace stackTrace]) =>
|
| + _inner.addError(error, stackTrace);
|
| }
|
|
|