From 3635d669f48f488339b273fb0c51d72a79d058c6 Mon Sep 17 00:00:00 2001 From: Curtis ROck Date: Tue, 7 Jul 2020 22:27:41 -0500 Subject: [PATCH] linter fix --- app/soapbox/reducers/__tests__/height_cache-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/reducers/__tests__/height_cache-test.js b/app/soapbox/reducers/__tests__/height_cache-test.js index cb9d05eb9..c964bfb62 100644 --- a/app/soapbox/reducers/__tests__/height_cache-test.js +++ b/app/soapbox/reducers/__tests__/height_cache-test.js @@ -8,6 +8,6 @@ describe('height_cache reducer', () => { }); it('should handle HEIGHT_CACHE_CLEAR', () => { - expect(reducer(undefined, {})).toEqual(ImmutableMap()); + expect(reducer(undefined, { type: HEIGHT_CACHE_CLEAR })).toEqual(ImmutableMap()); }); });