| Index: pkg/scheduled_test/lib/src/task.dart
|
| diff --git a/pkg/scheduled_test/lib/src/task.dart b/pkg/scheduled_test/lib/src/task.dart
|
| index 5bd52430a584db514ce2113c2d0fc796d65d7630..d55f4273e3138830dfeec6ec3919920ff62f28a9 100644
|
| --- a/pkg/scheduled_test/lib/src/task.dart
|
| +++ b/pkg/scheduled_test/lib/src/task.dart
|
| @@ -64,10 +64,10 @@ class Task {
|
| final Chain stackChain;
|
|
|
| Task(fn(), String description, TaskQueue queue)
|
| - : this._(fn, description, queue, null, queue.contents.length);
|
| + : this._(fn, description, queue, null, queue.contents.length);
|
|
|
| Task._child(fn(), String description, Task parent)
|
| - : this._(fn, description, parent.queue, parent, parent.children.length);
|
| + : this._(fn, description, parent.queue, parent, parent.children.length);
|
|
|
| Task._(fn(), this.description, TaskQueue queue, this.parent, this._id)
|
| : queue = queue,
|
|
|