Skip to content

Commit

Permalink
integration test oops: don't return when you should continue
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Apr 11, 2024
1 parent 0ce1570 commit bf977cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_integration/bin/slide_notes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ extension on Page {
for (var element in elements) {
final text = element.shape?.text;
if (text == null) {
return;
continue;
}

yield* text.lines;
Expand Down

0 comments on commit bf977cc

Please sign in to comment.