Skip to content

Commit

Permalink
fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
ueokande committed May 26, 2024
1 parent 0aa6d05 commit 2686a3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/chrome_for_testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,9 @@ export class KnownGoodVersionResolver {
throw new Error("Failed to get known good versions");
}

this.cache = resp.result.versions.reverse();
resp.result.versions.reverse();

this.cache = resp.result.versions;
return resp.result.versions;
}
}
Expand Down

0 comments on commit 2686a3d

Please sign in to comment.