| Index: test/io.dart
|
| diff --git a/test/io.dart b/test/io.dart
|
| index 950e25370118ef390c0f133509f8ed52de17fd55..c92ec938df7c3f2fc21455aee9b78748d3d2d535 100644
|
| --- a/test/io.dart
|
| +++ b/test/io.dart
|
| @@ -5,7 +5,6 @@
|
| library unittest.test.io;
|
|
|
| import 'dart:io';
|
| -import 'dart:mirrors';
|
|
|
| import 'package:path/path.dart' as p;
|
| import 'package:unittest/src/util/io.dart';
|
| @@ -17,7 +16,7 @@ final String packageDir = p.dirname(p.dirname(libraryPath(#unittest.test.io)));
|
| ProcessResult runUnittest(List<String> args, {String workingDirectory,
|
| Map<String, String> environment}) {
|
| var allArgs = [
|
| - p.join(packageDir, 'bin/unittest.dart'),
|
| + p.absolute(p.join(packageDir, 'bin/unittest.dart')),
|
| "--package-root=${p.join(packageDir, 'packages')}"
|
| ]..addAll(args);
|
|
|
|
|