Skip to content
Snippets Groups Projects
Commit 0264fc78 authored by Jed Parsons's avatar Jed Parsons
Browse files

fixed variable redefinition

parent d5914054
No related branches found
No related tags found
No related merge requests found
......@@ -78,8 +78,8 @@ page.open(phantom.args[0], function(status){
var failingItems = node.querySelectorAll(".fail");
var failingItemsCount = failingItems.length;
for(var i = 0; i < failingItemsCount; i++) {
var failingItem = failingItems.item(i);
for(var j = 0; j < failingItemsCount; j++) {
var failingItem = failingItems.item(j);
console.log(" - " + failingItem.innerText);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment