Skip to content

Commit

Permalink
[flutter_tools] make overall_experience_test resilient to extraneous …
Browse files Browse the repository at this point in the history
…pub output (#125172)

use `containsAllInOrder` so that pub output doesn't cause htis test to fail, as in https://ci.chromium.org/p/flutter/builders/try/Linux%20tool_tests_general/22929?
  • Loading branch information
christopherfujino authored Apr 20, 2023
1 parent 8ac94c1 commit 800175a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ void main() {
);
expect(result.exitCode, 0);
expect(result.stderr, isEmpty);
expect(result.stdout, <Object>[
expect(result.stdout, containsAllInOrder(<Object>[
startsWith('Launching '),
startsWith('Syncing files to device Flutter test device...'),
'',
Expand Down Expand Up @@ -626,6 +626,6 @@ void main() {
startsWith('The Flutter DevTools debugger and profiler on Flutter test device is available at: http://'),
'',
'Application finished.',
]);
]));
});
}

0 comments on commit 800175a

Please sign in to comment.