Skip to content

Commit

Permalink
Fix two minor errors for import-defer tests
Browse files Browse the repository at this point in the history
  * assert.deepEqual is used in one but without the include
  * typo of assert in the other
  • Loading branch information
takikawa committed Dec 19, 2024
1 parent c4317b0 commit 78bcc5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ info: |
flags: [module]
features: [import-defer]
includes: [deepEqual.js]
---*/

import defer * as ns from "./throws_FIXTURE.js";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");

0 comments on commit 78bcc5f

Please sign in to comment.