linter fix

This commit is contained in:
Curtis ROck 2020-07-07 22:27:41 -05:00
parent e01b7d8d70
commit 3635d669f4
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ describe('height_cache reducer', () => {
}); });
it('should handle HEIGHT_CACHE_CLEAR', () => { it('should handle HEIGHT_CACHE_CLEAR', () => {
expect(reducer(undefined, {})).toEqual(ImmutableMap()); expect(reducer(undefined, { type: HEIGHT_CACHE_CLEAR })).toEqual(ImmutableMap());
}); });
}); });