Skip to content

Commit 24afb18

Browse files
committed
update test to be more robust
1 parent 73908b5 commit 24afb18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/native_assets_builder/test/build_runner/build_runner_failure_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ void main() async {
6666
expect(fullLog, contains('To reproduce run:'));
6767
final reproCommand = fullLog
6868
.split('\n')
69-
.skipWhile((l) => l != 'To reproduce run:')
69+
.skipWhile((l) => !l.contains('To reproduce run:'))
7070
.skip(1)
7171
.first;
7272
final reproResult =

0 commit comments

Comments
 (0)