Skip to content

Commit

Permalink
fix null in test
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed May 18, 2018
1 parent 584de9c commit ec9b136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/picker/emoji-frequency.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('EmojiFrequently', () => {
inject(
[EmojiFrequentlyService, EmojiService],
(ef: EmojiFrequentlyService, es: EmojiService) => {
const pineapple = es.getData('pineapple');
const pineapple = es.getData('pineapple')!;
ef.get(8);
ef.add(pineapple);
const result = ef.get(8);
Expand Down

0 comments on commit ec9b136

Please sign in to comment.