Unverified Commit c420562e authored by Loïc Sharma's avatar Loïc Sharma Committed by GitHub

Fix output match (#116912)

parent 558b7e00
...@@ -211,7 +211,7 @@ void main() { ...@@ -211,7 +211,7 @@ void main() {
expect(mockStdio.stdout.writes.map(utf8.decode), expect(mockStdio.stdout.writes.map(utf8.decode),
allOf( allOf(
contains(matches(RegExp(r'Resolving dependencies in .+flutter_project\.\.\.'))), contains(matches(RegExp(r'Resolving dependencies in .+flutter_project\.\.\.'))),
contains(matches(RegExp(r'\+ flutter 0.0.0 from sdk flutter\n'))), contains(matches(RegExp(r'\+ flutter 0\.0\.0 from sdk flutter'))),
contains(matches(RegExp(r'Changed \d+ dependencies in .+flutter_project!'))), contains(matches(RegExp(r'Changed \d+ dependencies in .+flutter_project!'))),
), ),
); );
......
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