Skip to content

Commit

Permalink
chore: assert.deelEqual => assert.deepStrictEqual (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwlui authored and JustinBeckwith committed Jul 30, 2018
1 parent 5f37e51 commit 4567b10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('projectId placeholder', () => {
const PROJECT_ID = 'project-id';

it('should replace any {{projectId}} it finds', () => {
assert.deepEqual(
assert.deepStrictEqual(
replaceProjectIdToken(
{
here: 'A {{projectId}} Z',
Expand Down Expand Up @@ -77,7 +77,7 @@ describe('projectId placeholder', () => {
});

it('should replace more than one {{projectId}}', () => {
assert.deepEqual(
assert.deepStrictEqual(
replaceProjectIdToken(
{
here: 'A {{projectId}} M {{projectId}} Z',
Expand All @@ -95,4 +95,4 @@ describe('projectId placeholder', () => {
});
}, /Sorry, we cannot connect/);
});
});
});

0 comments on commit 4567b10

Please sign in to comment.