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
PR-URL: #28474
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
RamirezAlex authored and Trott committed Jul 21, 2019
1 parent 3499741 commit 6948a95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/es-module/test-esm-namespace.mjs
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 6948a95

Please sign in to comment.