Remove extraneous invocation

This commit is contained in:
Mike Pennisi 2015-05-25 15:48:54 -04:00
parent a2e1fc713e
commit 099d10cb34
1 changed files with 0 additions and 2 deletions

View File

@ -26,8 +26,6 @@ function* g() {
var iter = g();
var result;
iter = g();
result = iter.next();
assert.sameValue(result.value, 1, 'First result `value`');
assert.sameValue(result.done, false, 'First result `done` flag');