Skip to content

Commit

Permalink
fix syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Oct 12, 2023
1 parent 21ea557 commit 514f4b3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/general/LoadTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
}
if(meta.threadcount==1 || meta.repetitition==1) {
throw "repetitition or thread count need to be bigger than 1";

}
var names = [];
var exceptions = [];
for (var i = 1; i <= arguments.repetitition; i++) {
Expand All @@ -33,7 +33,6 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
catch(e) {
arrayAppend(exceptions, e);
}

}
}
}
Expand Down

0 comments on commit 514f4b3

Please sign in to comment.