Fix unused import warning in tests. (#80)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 13b020d..c652630 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 1.0.2
+
+* Fix analyzer warning
+
 ## 1.0.1
 
 * Fix a fuzzy arrow type warning.
diff --git a/pubspec.yaml b/pubspec.yaml
index 00fc576..4692428 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: args
-version: 1.0.1
+version: 1.0.2
 author: "Dart Team <misc@dartlang.org>"
 homepage: https://github.com/dart-lang/args
 description: >
diff --git a/test/allow_anything_test.dart b/test/allow_anything_test.dart
index 7e229af..ac185f8 100644
--- a/test/allow_anything_test.dart
+++ b/test/allow_anything_test.dart
@@ -6,8 +6,6 @@
 
 import 'package:args/args.dart';
 
-import 'utils.dart';
-
 void main() {
   group('new ArgParser.allowAnything()', () {
     ArgParser parser;