Skip to content

Commit

Permalink
Some CF7 compat fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcesher committed Jan 15, 2012
1 parent b704230 commit b533e9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/decorators/OrderedTestDecorator.cfc
Expand Up @@ -5,13 +5,13 @@
var methods = getTarget().getRunnableMethods();
var i = 1;
var order = 0;
var tests = [];
var tests = arrayNew(1);
var test = "";
var BubbleSort = createObject("Component","mxunit.utils.BubbleSort");
var sortedTests = arrayNew(1);
var returnArray = arrayNew(1);

for(i = 1; i LTE arrayLen(methods); i++){
for(i = 1; i LTE arrayLen(methods); i = i + 1){
test = structNew();
test.order = getAnnotation(methods[i],"order");
test.name = methods[i];
Expand Down

0 comments on commit b533e9b

Please sign in to comment.