Skip to content

Commit

Permalink
Fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
NagRock committed Jan 23, 2018
1 parent a68c61d commit 04f60d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/instance.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ describe("instance", () => {
mockedFoo = mock(Foo);

// when
let firstFooInstance = instance(mockedFoo);
let secondFooInstance = instance(mockedFoo);
const firstFooInstance = instance(mockedFoo);
const secondFooInstance = instance(mockedFoo);

// then
expect(firstFooInstance).toBe(secondFooInstance);
Expand Down

0 comments on commit 04f60d4

Please sign in to comment.