Skip to content

Commit 35c4281

Browse files
jpolackJonah Polack
authored and
Jonah Polack
committed
test: switch order of strictEqual arguments
1 parent a49b672 commit 35c4281

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-fs-read-file-sync.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ const fn = fixtures.path('elipses.txt');
2929

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

0 commit comments

Comments
 (0)