Skip to content

Commit

Permalink
Fix output match (#116912)
Browse files Browse the repository at this point in the history
  • Loading branch information
loic-sharma authored Dec 12, 2022
1 parent 558b7e0 commit c420562
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ void main() {
expect(mockStdio.stdout.writes.map(utf8.decode),
allOf(
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!'))),
),
);
Expand Down

0 comments on commit c420562

Please sign in to comment.