Skip to content

Commit

Permalink
test: fix assertion argument order in test-esm-namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
RamirezAlex committed Jun 30, 2019
1 parent a173173 commit 110e1bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/es-module/test-esm-namespace.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ const keys = Object.entries(
.concat('default')
.sort();

assert.deepStrictEqual(Object.keys(fs).sort(), keys);
assert.deepStrictEqual(keys, Object.keys(fs).sort());

0 comments on commit 110e1bb

Please sign in to comment.