Fix two minor errors for import-defer tests

* assert.deepEqual is used in one but without the include
  * typo of assert in the other
This commit is contained in:
Asumu Takikawa 2024-12-18 16:58:28 -08:00 committed by Ms2ger
parent 8296db8873
commit 1d7a2938a2
2 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ info: |
flags: [module]
features: [import-defer]
includes: [deepEqual.js]
---*/
import defer * as ns from "./throws_FIXTURE.js";

View File

@ -27,4 +27,4 @@ features: [import-defer]
import defer from "./dep_FIXTURE.js";
asserts.sameValue(defer, 1, "`defer` is the default export binding");
assert.sameValue(defer, 1, "`defer` is the default export binding");