Skip to content
Snippets Groups Projects
Commit fc250a31 authored by Leo Balter's avatar Leo Balter Committed by Rick Waldron
Browse files

fix test with unnecessary async generator

parent 98b3cc95
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ function *g() {
return import(yield 42);
}
async function *fn() {
async function fn() {
let iter = g();
assert.sameValue(iter.next().value, 42);
......@@ -44,4 +44,4 @@ async function *fn() {
assert.sameValue(ns2.default, 1612);
}
fn().next(a).then($DONE, $DONE).catch($DONE);
fn().then($DONE, $DONE).catch($DONE);
......@@ -26,7 +26,7 @@ function *g() {
return import(yield);
}
async function *fn() {
async function fn() {
let iter = g();
iter.next();
......@@ -44,4 +44,4 @@ async function *fn() {
assert.sameValue(ns2.default, 1612);
}
fn().next(a).then($DONE, $DONE).catch($DONE);
fn().then($DONE, $DONE).catch($DONE);
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