diff --git a/test/language/module-code/top-level-await/module-self-import-async-resolution-ticks.js b/test/language/module-code/top-level-await/module-self-import-async-resolution-ticks.js index 756dcb50faa..d6b383034a4 100644 --- a/test/language/module-code/top-level-await/module-self-import-async-resolution-ticks.js +++ b/test/language/module-code/top-level-await/module-self-import-async-resolution-ticks.js @@ -83,6 +83,6 @@ assert.throws(ReferenceError, function() { export default await Promise.resolve(42); assert.sameValue(x, 'tick in the async evaluation'); -assert.sameValue(self, 42), 'self is initialized after export'; +assert.sameValue(self, 42, 'self is initialized after export'); $DONE();