Skip to content

Commit

Permalink
test: switch order of strictEqual arguments
Browse files Browse the repository at this point in the history
PR-URL: nodejs#24185
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
  • Loading branch information
jpolack authored and kiyomizumia committed Nov 15, 2018
1 parent 780eca9 commit 5bd7fd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-fs-read-file-sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ const fn = fixtures.path('elipses.txt');

const s = fs.readFileSync(fn, 'utf8');
for (let i = 0; i < s.length; i++) {
assert.strictEqual('\u2026', s[i]);
assert.strictEqual(s[i], '\u2026');
}
assert.strictEqual(10000, s.length);
assert.strictEqual(s.length, 10000);

0 comments on commit 5bd7fd2

Please sign in to comment.