We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ac94c1 commit 800175aCopy full SHA for 800175a
packages/flutter_tools/test/integration.shard/overall_experience_test.dart
@@ -582,7 +582,7 @@ void main() {
582
);
583
expect(result.exitCode, 0);
584
expect(result.stderr, isEmpty);
585
- expect(result.stdout, <Object>[
+ expect(result.stdout, containsAllInOrder(<Object>[
586
startsWith('Launching '),
587
startsWith('Syncing files to device Flutter test device...'),
588
'',
@@ -626,6 +626,6 @@ void main() {
626
startsWith('The Flutter DevTools debugger and profiler on Flutter test device is available at: http://'),
627
628
'Application finished.',
629
- ]);
+ ]));
630
});
631
}
0 commit comments