Skip to content

Commit

Permalink
Fix the lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Jun 18, 2015
1 parent 709ad99 commit d052f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/identity.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import identity from '../../src/utils/identity';
describe('Utils', () => {
describe('identity', () => {
it('should return first argument passed to it', () => {
var test = { 'a': 1 };
const test = { 'a': 1 };
expect(identity(test, 'test')).toBe(test);
});
});
Expand Down

0 comments on commit d052f55

Please sign in to comment.