Merge pull request #9 from srawlins/remove-unused-imports

Remove unused imports in the test files
diff --git a/test/client/client_test.dart b/test/client/client_test.dart
index 1553787..5601daa 100644
--- a/test/client/client_test.dart
+++ b/test/client/client_test.dart
@@ -3,7 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 import 'dart:async';
-import 'dart:convert';
 
 import 'package:test/test.dart';
 import 'package:json_rpc_2/error_code.dart' as error_code;
diff --git a/test/client/utils.dart b/test/client/utils.dart
index 5eb0b60..09a200c 100644
--- a/test/client/utils.dart
+++ b/test/client/utils.dart
@@ -9,7 +9,6 @@
 import 'package:test/test.dart';
 
 import 'package:json_rpc_2/json_rpc_2.dart' as json_rpc;
-import 'package:json_rpc_2/error_code.dart' as error_code;
 
 /// A controller used to test a [json_rpc.Client].
 class ClientController {
diff --git a/test/server/batch_test.dart b/test/server/batch_test.dart
index d7bf79d..11ec66e 100644
--- a/test/server/batch_test.dart
+++ b/test/server/batch_test.dart
@@ -2,11 +2,8 @@
 // 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.
 
-import 'dart:convert';
-
 import 'package:test/test.dart';
 import 'package:json_rpc_2/error_code.dart' as error_code;
-import 'package:json_rpc_2/json_rpc_2.dart' as json_rpc;
 
 import 'utils.dart';
 
@@ -89,4 +86,4 @@
       }
     }])));
   });
-}
\ No newline at end of file
+}
diff --git a/test/server/invalid_request_test.dart b/test/server/invalid_request_test.dart
index cd6f014..cd54b6f 100644
--- a/test/server/invalid_request_test.dart
+++ b/test/server/invalid_request_test.dart
@@ -2,11 +2,8 @@
 // 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.
 
-import 'dart:convert';
-
 import 'package:test/test.dart';
 import 'package:json_rpc_2/error_code.dart' as error_code;
-import 'package:json_rpc_2/json_rpc_2.dart' as json_rpc;
 
 import 'utils.dart';