Chromium Code Reviews| 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..6b42a72eab19eea804501cd872109ebcfdcdeae8 100644 |
| --- a/lib/src/runner/load_exception_suite.dart |
| +++ b/lib/src/runner/load_exception_suite.dart |
| @@ -23,8 +23,8 @@ class LoadExceptionSuite extends Suite { |
| LoadExceptionSuite(LoadException exception, stackTrace) |
| : exception = exception, |
| stackTrace = stackTrace, |
| - super([ |
| + super(new Group.root([ |
|
kevmoo
2015/10/07 19:24:45
missing import for Group
nweiz
2015/10/07 21:49:01
Done.
|
| new LocalTest("load error", new Metadata(), |
| () => new Future.error(exception, stackTrace)) |
| - ], path: exception.path); |
| + ]), path: exception.path); |
| } |