Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: test/backend/invoker_test.dart

Issue 1390883002: Make Suite contain a single Group. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/backend/invoker_test.dart
diff --git a/test/backend/invoker_test.dart b/test/backend/invoker_test.dart
index 38cda5c54261d12e3fb54e974b9322a3a65e1d93..0bc81d7568859f227ba695b084259b7dc88613bb 100644
--- a/test/backend/invoker_test.dart
+++ b/test/backend/invoker_test.dart
@@ -5,6 +5,7 @@
import 'dart:async';
import 'package:fake_async/fake_async.dart';
+import 'package:test/src/backend/group.dart';
import 'package:test/src/backend/invoker.dart';
import 'package:test/src/backend/metadata.dart';
import 'package:test/src/backend/state.dart';
@@ -17,7 +18,7 @@ void main() {
var suite;
setUp(() {
lastState = null;
- suite = new Suite([]);
+ suite = new Suite(new Group.root([]));
});
group("Invoker.current", () {

Powered by Google App Engine
This is Rietveld 408576698