Index: sdk/lib/_internal/pub/test/pub_test.dart |
diff --git a/sdk/lib/_internal/pub/test/pub_test.dart b/sdk/lib/_internal/pub/test/pub_test.dart |
index cf0749ca87ed82eea6bc34810b019cfb657c6174..9651554a805e8d303c5d89947627ada8bc657a21 100644 |
--- a/sdk/lib/_internal/pub/test/pub_test.dart |
+++ b/sdk/lib/_internal/pub/test/pub_test.dart |
@@ -6,7 +6,6 @@ library pub_tests; |
import 'package:scheduled_test/scheduled_test.dart'; |
-import 'descriptor.dart' as d; |
import 'test_pub.dart'; |
final USAGE_STRING = """ |
@@ -169,23 +168,5 @@ main() { |
integration('displays the current version', () { |
schedulePub(args: ['version'], output: VERSION_STRING); |
}); |
- |
- integration('parses a release-style version', () { |
- d.dir(sdkPath, [ |
- d.file('version', '0.1.2.0_r17645'), |
- ]).create(); |
- |
- schedulePub(args: ['version'], output: "Pub 0.1.2+0.r17645\n"); |
- }); |
- |
- integration('parses a dev-only style version', () { |
- // The "version" file generated on developer builds is a little funky and |
- // we need to make sure we don't choke on it. |
- d.dir(sdkPath, [ |
- d.file('version', '0.1.2.0_r16279_bobross'), |
- ]).create(); |
- |
- schedulePub(args: ['version'], output: "Pub 0.1.2+0.r16279.bobross\n"); |
- }); |
}); |
} |