Skip to content

Commit

Permalink
fix invalid scope
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Oct 12, 2023
1 parent 514f4b3 commit 0aae767
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/general/LoadTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
}
var names = [];
var exceptions = [];
for (var i = 1; i <= arguments.repetitition; i++) {
for (var y = 1; y <= arguments.threadcount; y++) {
for (var i = 1; i <= meta.repetitition; i++) {
for (var y = 1; y <= meta.threadcount; y++) {
var name="testThread:#i#:#y#";
arrayAppend(names, name);
thread action="run" name=name udf=code args=arguments exceptions=exceptions {
Expand Down

0 comments on commit 0aae767

Please sign in to comment.