From 21bbe26fa5af0b0869f19b964aaecc2dd366678e Mon Sep 17 00:00:00 2001 From: Eric Giovanola Date: Mon, 25 Feb 2019 10:54:06 -0800 Subject: [PATCH] Fix lint error --- test/components/AsyncTypeaheadSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/components/AsyncTypeaheadSpec.js b/test/components/AsyncTypeaheadSpec.js index 6d7f638a..5e82fb19 100644 --- a/test/components/AsyncTypeaheadSpec.js +++ b/test/components/AsyncTypeaheadSpec.js @@ -123,7 +123,7 @@ describe('', () => { let callCount = 0; onSearch = (options, callback) => (query) => { - callCount++; + callCount += 1; wrapper.setProps({isLoading: true});