Skip to content

Commit

Permalink
Fix lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Apr 12, 2017
1 parent bf2dbe0 commit dff5f2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/property-effects-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@
for (let i=0; i<nodeList.length; i++) {
let node = nodeList[i];
let nodeInfo = nodeInfoList[i];
let templateNodeInfo;
switch (node.getAttribute('name')) {
case 'el1':
assert.equal(nodeInfo.specialNode, true);
Expand All @@ -610,7 +611,7 @@
case 'el6':
assert.isOk(nodeInfo.templateInfo);
assert.equal(nodeInfo.templateInfo.nodeInfoList.length, 1)
let templateNodeInfo = nodeInfo.templateInfo.nodeInfoList[0];
templateNodeInfo = nodeInfo.templateInfo.nodeInfoList[0];
assert.equal(templateNodeInfo.bindings.length, 1);
assert.equal(templateNodeInfo.events.length, 1);
assert.equal(templateNodeInfo.specialAttr, 't-attr');
Expand Down

0 comments on commit dff5f2b

Please sign in to comment.