| Index: utils/tests/pub/validator_test.dart
|
| diff --git a/utils/tests/pub/validator_test.dart b/utils/tests/pub/validator_test.dart
|
| index 3dbb5adef147ac198579e2c8a0c01712cc6f32b5..25c5b762c55357bb96000841aada084c0aae5aa3 100644
|
| --- a/utils/tests/pub/validator_test.dart
|
| +++ b/utils/tests/pub/validator_test.dart
|
| @@ -298,7 +298,7 @@ main() {
|
| });
|
|
|
| integration('has a package name that is a Dart reserved word', () {
|
| - dir(appPath, [libPubspec("operator", "1.0.0")]).scheduleCreate();
|
| + dir(appPath, [libPubspec("final", "1.0.0")]).scheduleCreate();
|
| expectValidationError(name);
|
| });
|
|
|
| @@ -329,7 +329,7 @@ main() {
|
| integration('has a library name that is a Dart reserved word', () {
|
| dir(appPath, [
|
| libPubspec("test_pkg", "1.0.0"),
|
| - dir("lib", [file("operator.dart", "int i = 0;")])
|
| + dir("lib", [file("for.dart", "int i = 0;")])
|
| ]).scheduleCreate();
|
| expectValidationError(name);
|
| });
|
|
|