| Index: test/runner/pause_after_load_test.dart
|
| diff --git a/test/runner/pause_after_load_test.dart b/test/runner/pause_after_load_test.dart
|
| index 8c701e316e76b702864d5006aa1608d3ed1639a0..1103a7094ea1b1c55aa2195862cafef5f54949b0 100644
|
| --- a/test/runner/pause_after_load_test.dart
|
| +++ b/test/runner/pause_after_load_test.dart
|
| @@ -49,7 +49,7 @@ void main() {
|
|
|
| schedule(() async {
|
| var nextLineFired = false;
|
| - test.stdout.next().then(expectAsync((line) {
|
| + test.stdout.next().then(expectAsync1((line) {
|
| expect(line, contains("+0: test1.dart: success"));
|
| nextLineFired = true;
|
| }));
|
| @@ -72,7 +72,7 @@ void main() {
|
|
|
| schedule(() async {
|
| var nextLineFired = false;
|
| - test.stdout.next().then(expectAsync((line) {
|
| + test.stdout.next().then(expectAsync1((line) {
|
| expect(line, contains("+1: test2.dart: success"));
|
| nextLineFired = true;
|
| }));
|
| @@ -112,7 +112,7 @@ void main() {
|
|
|
| schedule(() async {
|
| var nextLineFired = false;
|
| - test.stdout.next().then(expectAsync((line) {
|
| + test.stdout.next().then(expectAsync1((line) {
|
| expect(line, contains("+0: [Dartium] success"));
|
| nextLineFired = true;
|
| }));
|
| @@ -134,7 +134,7 @@ void main() {
|
|
|
| schedule(() async {
|
| var nextLineFired = false;
|
| - test.stdout.next().then(expectAsync((line) {
|
| + test.stdout.next().then(expectAsync1((line) {
|
| expect(line, contains("+1: [Chrome] success"));
|
| nextLineFired = true;
|
| }));
|
| @@ -193,7 +193,7 @@ void main() {
|
|
|
| schedule(() async {
|
| var nextLineFired = false;
|
| - test.stdout.next().then(expectAsync((line) {
|
| + test.stdout.next().then(expectAsync1((line) {
|
| expect(line, contains("+0: [Dartium] success"));
|
| nextLineFired = true;
|
| }));
|
| @@ -266,7 +266,7 @@ void main() {
|
|
|
| schedule(() async {
|
| var nextLineFired = false;
|
| - test.stdout.next().then(expectAsync((line) {
|
| + test.stdout.next().then(expectAsync1((line) {
|
| expect(line, contains("+0: success"));
|
| nextLineFired = true;
|
| }));
|
| @@ -308,7 +308,7 @@ void main() {
|
|
|
| schedule(() async {
|
| var nextLineFired = false;
|
| - test.stdout.next().then(expectAsync((line) {
|
| + test.stdout.next().then(expectAsync1((line) {
|
| expect(line, contains("+0: success"));
|
| nextLineFired = true;
|
| }));
|
|
|