Skip to content

Commit d052f55

Browse files
committed
Fix the lint error
1 parent 709ad99 commit d052f55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/identity.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import identity from '../../src/utils/identity';
44
describe('Utils', () => {
55
describe('identity', () => {
66
it('should return first argument passed to it', () => {
7-
var test = { 'a': 1 };
7+
const test = { 'a': 1 };
88
expect(identity(test, 'test')).toBe(test);
99
});
1010
});

0 commit comments

Comments
 (0)