Skip to content

Commit d198a22

Browse files
committed
fixed lint error
1 parent 3ae7c91 commit d198a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/compose.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('Utils', () => {
4141
it('returns the first given argument if given no functions', () => {
4242
expect(compose()(1, 2)).toBe(1)
4343
expect(compose()(3)).toBe(3)
44-
expect(compose(false,4,"test")(3)).toBe(3)
44+
expect(compose(false,4,'test')(3)).toBe(3)
4545
expect(compose()()).toBe(undefined)
4646
})
4747

0 commit comments

Comments
 (0)