| Index: sdk/lib/_internal/pub_generated/test/serve/serves_file_with_space_test.dart
|
| diff --git a/sdk/lib/_internal/pub_generated/test/serve/serves_file_with_space_test.dart b/sdk/lib/_internal/pub_generated/test/serve/serves_file_with_space_test.dart
|
| index 94fecfdc5a48a2ca5f6617b43f201e50bf375acd..d2421cff64a58b98bff9d95d24268fd347afac1e 100644
|
| --- a/sdk/lib/_internal/pub_generated/test/serve/serves_file_with_space_test.dart
|
| +++ b/sdk/lib/_internal/pub_generated/test/serve/serves_file_with_space_test.dart
|
| @@ -1,7 +1,13 @@
|
| +// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| library pub_tests;
|
| +
|
| import '../descriptor.dart' as d;
|
| import '../test_pub.dart';
|
| import 'utils.dart';
|
| +
|
| main() {
|
| initConfig();
|
| integration("serves a filename with a space", () {
|
| @@ -13,7 +19,8 @@ main() {
|
| "web",
|
| [
|
| d.file("foo bar.txt", "outer contents"),
|
| - d.dir("sub dir", [d.file("inner.txt", "inner contents")])])]).create();
|
| + d.dir("sub dir", [d.file("inner.txt", "inner contents"),])])]).create();
|
| +
|
| pubServe();
|
| requestShouldSucceed("foo%20bar.txt", "outer contents");
|
| requestShouldSucceed("sub%20dir/inner.txt", "inner contents");
|
|
|