mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-29 19:57:41 +00:00
chore(web): replaces a couple of 'var's
This commit is contained in:
parent
2503dfa3a8
commit
bdbf94bd47
1 changed files with 2 additions and 2 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue