chore(web): replaces a couple of 'var's

This commit is contained in:
Joshua A. Horton 2024-05-29 08:42:39 +07:00
parent 2503dfa3a8
commit bdbf94bd47

View file

@ -621,8 +621,8 @@ export class RecordedSequenceTestSet implements TestSet<RecordedKeystrokeSequenc
let testSet = this.testSet;
for(var i=0; i < testSet.length; i++) {
var testSeq = this.testSet[i];
var simResult = await testSet[i].test(proctor);
const testSeq = this.testSet[i];
const simResult = await testSet[i].test(proctor);
if(!simResult.success) {
// Failed test!
failures.push(new TestFailure(this.constraint, testSeq, simResult.result));