Skip to content

Commit

Permalink
deepEqual is an alias for deepStrictEqual and deepEqual is depr…
Browse files Browse the repository at this point in the history
…ecated.
  • Loading branch information
thekevinbrown committed Apr 23, 2019
1 parent 32ba4e8 commit 7828425
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export const assertRowsEqual = async <RowType>(
expected: Array<RowType>
) => {
const result = await getTableRowsResult;
assert.deepEqual(result, {

assert.deepStrictEqual(result, {
rows: expected,
more: false,
});
Expand Down

0 comments on commit 7828425

Please sign in to comment.