Index: tests/standalone/package/scenarios/packages_file_strange_formatting/target_with_colon_test.dart |
diff --git a/tests/standalone/package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test.dart b/tests/standalone/package/scenarios/packages_file_strange_formatting/target_with_colon_test.dart |
similarity index 54% |
copy from tests/standalone/package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test.dart |
copy to tests/standalone/package/scenarios/packages_file_strange_formatting/target_with_colon_test.dart |
index 106b1af87535443c2ac8064d8c1071be8e0a7f50..6a3985b374300b245af4db3d948b20d98640df6c 100644 |
--- a/tests/standalone/package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test.dart |
+++ b/tests/standalone/package/scenarios/packages_file_strange_formatting/target_with_colon_test.dart |
@@ -3,13 +3,14 @@ |
// BSD-style license that can be found in the LICENSE file. |
// PackageRoot=none |
+// Packages=target_with_colon.packages |
-library packages_file_in_parent_test; |
+library target_with_colon_test; |
-import 'package:foo/foo.dart' as foo; |
+import 'package:quux/quux.dart' as quux; |
main() { |
- if (foo.bar != 'hello') { |
- throw new Exception('package "foo" was not resolved correctly'); |
+ if (quux.quux != 'quux') { |
+ throw new Exception('package "quux" was not resolved correctly'); |
} |
} |