Skip to content

Commit

Permalink
force change
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams committed Sep 27, 2020
1 parent 3acd92b commit e723117
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions boa/src/exec/iteration/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ fn for_loop_break_label() {
let scenario = r#"
var str = "";
loop1: for (let i = 0; i < 5; i++) {
loop2: for (let b = 0; b < 5; b++) {
outer: for (let i = 0; i < 5; i++) {
inner: for (let b = 0; b < 5; b++) {
if (b === 2) {
break loop1;
break outer;
}
str = str + b;
}
Expand Down

0 comments on commit e723117

Please sign in to comment.