Update missed bracket in module-self-import-async-resolution-ticks.js

This commit is contained in:
Boshen 2025-01-31 13:18:32 +08:00 committed by Philip Chimento
parent d5c4779c62
commit d8e2cb2741
1 changed files with 1 additions and 1 deletions

View File

@ -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();