From d8e2cb274167073d3a0979085eeec5c1258ab042 Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 31 Jan 2025 13:18:32 +0800 Subject: [PATCH] Update missed bracket in module-self-import-async-resolution-ticks.js --- .../module-self-import-async-resolution-ticks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 756dcb50fa..d6b383034a 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();