Unverified Commit 800175af authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

[flutter_tools] make overall_experience_test resilient to extraneous 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?
parent 8ac94c16
......@@ -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...'),
'',
......@@ -626,6 +626,6 @@ void main() {
startsWith('The Flutter DevTools debugger and profiler on Flutter test device is available at: http://'),
'',
'Application finished.',
]);
]));
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment