| Index: lib/src/runner/load_exception_suite.dart
|
| diff --git a/lib/src/runner/load_exception_suite.dart b/lib/src/runner/load_exception_suite.dart
|
| index 40589bbd99e555094ba36fe396f9ac2c62b7ba61..2808daf072545a89bf07c82c0ca732bce6f38bde 100644
|
| --- a/lib/src/runner/load_exception_suite.dart
|
| +++ b/lib/src/runner/load_exception_suite.dart
|
| @@ -6,6 +6,7 @@ library test.runner.load_exception_suite;
|
|
|
| import 'dart:async';
|
|
|
| +import '../backend/group.dart';
|
| import '../backend/invoker.dart';
|
| import '../backend/metadata.dart';
|
| import '../backend/suite.dart';
|
| @@ -23,8 +24,8 @@ class LoadExceptionSuite extends Suite {
|
| LoadExceptionSuite(LoadException exception, stackTrace)
|
| : exception = exception,
|
| stackTrace = stackTrace,
|
| - super([
|
| + super(new Group.root([
|
| new LocalTest("load error", new Metadata(),
|
| () => new Future.error(exception, stackTrace))
|
| - ], path: exception.path);
|
| + ]), path: exception.path);
|
| }
|
|
|