linter fix

This commit is contained in:
Curtis ROck 2020-07-07 22:27:41 -05:00
parent e01b7d8d70
commit 3635d669f4

View file

@ -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());
});
});