Skip to content

Commit

Permalink
toLeopard: enter expected i2 -> i3 dynamic-repeat snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
towerofnix committed Jun 25, 2024
1 parent f52cd4b commit 3321cda
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/__tests__/__snapshots__/dynamic-repeat.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ export default class Tests extends Sprite {
*avoidAbscuring(times, i) {
for (let i2 = 0; i2 < 1; i2++) {
for (
let i2 = 0, times2 = this.x + 6 * this.toNumber(i);
i2 < times2;
i2++
let i3 = 0, times2 = this.x + 6 * this.toNumber(i);
i3 < times2;
i3++
) {
this.x += this.toNumber(times);
yield;
Expand Down Expand Up @@ -64,11 +64,11 @@ export default class Tests extends Sprite {
this.x += 1;
yield;
}
for (let i = 0, times = 2 + 2 * 0.5; i < times; i++) {
for (let i2 = 0, times = 2 + 2 * 0.5; i2 < times; i2++) {
this.x += 1;
yield;
}
for (let i = 0, times = this.x + 4; i < times; i++) {
for (let i3 = 0, times2 = this.x + 4; i3 < times2; i3++) {
this.x += 1;
yield;
}
Expand Down

0 comments on commit 3321cda

Please sign in to comment.