Skip to content

Commit

Permalink
update test to be more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
mkustermann committed Nov 4, 2024
1 parent 73908b5 commit 24afb18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void main() async {
expect(fullLog, contains('To reproduce run:'));
final reproCommand = fullLog
.split('\n')
.skipWhile((l) => l != 'To reproduce run:')
.skipWhile((l) => !l.contains('To reproduce run:'))
.skip(1)
.first;
final reproResult =
Expand Down

0 comments on commit 24afb18

Please sign in to comment.