Skip to content
Snippets Groups Projects
Commit b7d49694 authored by Mike Pennisi's avatar Mike Pennisi
Browse files

Use distinct variable name within test case

In order to increase the clarity of generated output, select a name for
the test case variable that is not also used by a test template.
parent 95b5b13c
No related branches found
No related tags found
No related merge requests found
......@@ -26,11 +26,11 @@ info: |
//- setup
var iter = {};
iter[Symbol.iterator] = function() {
var callCount = 0;
var nextCount = 0;
return {
next: function() {
callCount += 1;
return { done: callCount === 3, value: callCount };
nextCount += 1;
return { done: nextCount === 3, value: nextCount };
}
};
};
......
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