Skip to content

Commit

Permalink
test/lib/util.spec.js: switch to deepStrictEqual (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored Apr 14, 2020
1 parent 0f0c34e commit 82f6c75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/lib/util.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('util', () => {
path.join('a1', 'b2', 'c2', 'd1.txt')
];

assert.deepEqual(files, expected);
assert.deepStrictEqual(files, expected);
});
});

Expand All @@ -64,7 +64,7 @@ describe('util', () => {
path.join('a2', 'b1')
].sort();

assert.deepEqual(got, expected);
assert.deepStrictEqual(got, expected);
});
});

Expand All @@ -85,7 +85,7 @@ describe('util', () => {
path.join('a1', 'b2', 'c2')
];

assert.deepEqual(got, expected);
assert.deepStrictEqual(got, expected);
});
});
});

0 comments on commit 82f6c75

Please sign in to comment.