summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/toString/AsyncGenerator.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/toString/AsyncGenerator.js')
-rw-r--r--test/built-ins/Function/prototype/toString/AsyncGenerator.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Function/prototype/toString/AsyncGenerator.js b/test/built-ins/Function/prototype/toString/AsyncGenerator.js
index 43cce215e..de753afdd 100644
--- a/test/built-ins/Function/prototype/toString/AsyncGenerator.js
+++ b/test/built-ins/Function/prototype/toString/AsyncGenerator.js
@@ -12,5 +12,5 @@ features: [async-iteration]
async function* f() {}
var AsyncGenerator = f.constructor;
-var g = /* before */AsyncGenerator("a", " /* a */ b, c /* b */ //", "/* c */ ; /* d */ //")/* after */;
+var g = /* before */ AsyncGenerator("a", " /* a */ b, c /* b */ //", "/* c */ ; /* d */ //") /* after */ ;
assert.sameValue(g.toString(), "async function* anonymous(a, /* a */ b, c /* b */ //\n) {\n/* c */ ; /* d */ //\n}");